| OLD | NEW |
| 1 // Copyright 2016 PDFium Authors. All rights reserved. | 1 // Copyright 2016 PDFium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com | 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com |
| 6 | 6 |
| 7 #ifndef CORE_FPDFAPI_FPDF_PARSER_CPDF_INDIRECT_OBJECT_HOLDER_H_ | 7 #ifndef CORE_FPDFAPI_FPDF_PARSER_CPDF_INDIRECT_OBJECT_HOLDER_H_ |
| 8 #define CORE_FPDFAPI_FPDF_PARSER_CPDF_INDIRECT_OBJECT_HOLDER_H_ | 8 #define CORE_FPDFAPI_FPDF_PARSER_CPDF_INDIRECT_OBJECT_HOLDER_H_ |
| 9 | 9 |
| 10 #include <map> | 10 #include <map> |
| 11 #include <memory> | 11 #include <memory> |
| 12 | 12 |
| 13 #include "core/fxcrt/include/fx_system.h" | 13 #include "core/fxcrt/fx_system.h" |
| 14 | 14 |
| 15 class CPDF_Object; | 15 class CPDF_Object; |
| 16 | 16 |
| 17 class CPDF_IndirectObjectHolder { | 17 class CPDF_IndirectObjectHolder { |
| 18 public: | 18 public: |
| 19 using const_iterator = | 19 using const_iterator = |
| 20 std::map<uint32_t, std::unique_ptr<CPDF_Object>>::const_iterator; | 20 std::map<uint32_t, std::unique_ptr<CPDF_Object>>::const_iterator; |
| 21 | 21 |
| 22 CPDF_IndirectObjectHolder(); | 22 CPDF_IndirectObjectHolder(); |
| 23 virtual ~CPDF_IndirectObjectHolder(); | 23 virtual ~CPDF_IndirectObjectHolder(); |
| (...skipping 15 matching lines...) Expand all Loading... |
| 39 | 39 |
| 40 protected: | 40 protected: |
| 41 virtual CPDF_Object* ParseIndirectObject(uint32_t objnum); | 41 virtual CPDF_Object* ParseIndirectObject(uint32_t objnum); |
| 42 | 42 |
| 43 private: | 43 private: |
| 44 uint32_t m_LastObjNum; | 44 uint32_t m_LastObjNum; |
| 45 std::map<uint32_t, std::unique_ptr<CPDF_Object>> m_IndirectObjs; | 45 std::map<uint32_t, std::unique_ptr<CPDF_Object>> m_IndirectObjs; |
| 46 }; | 46 }; |
| 47 | 47 |
| 48 #endif // CORE_FPDFAPI_FPDF_PARSER_CPDF_INDIRECT_OBJECT_HOLDER_H_ | 48 #endif // CORE_FPDFAPI_FPDF_PARSER_CPDF_INDIRECT_OBJECT_HOLDER_H_ |
| OLD | NEW |