| OLD | NEW |
| 1 // Copyright 2014 PDFium Authors. All rights reserved. | 1 // Copyright 2014 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 _FPDF_SERIAL_ | 7 #ifndef CORE_INCLUDE_FPDFAPI_FPDF_SERIAL_H_ |
| 8 #define _FPDF_SERIAL_ | 8 #define CORE_INCLUDE_FPDFAPI_FPDF_SERIAL_H_ |
| 9 #ifndef _FPDF_PAGE_ | 9 |
| 10 #include "fpdf_page.h" | 10 #include "fpdf_page.h" |
| 11 #endif | |
| 12 #ifndef _FPDF_PAGEOBJ_H_ | |
| 13 #include "fpdf_pageobj.h" | 11 #include "fpdf_pageobj.h" |
| 14 #endif | 12 |
| 15 class CPDF_ObjectStream; | 13 class CPDF_ObjectStream; |
| 16 class CPDF_XRefStream; | 14 class CPDF_XRefStream; |
| 17 CFX_ByteTextBuf& operator << (CFX_ByteTextBuf& buf, const CPDF_Object* pObj); | 15 CFX_ByteTextBuf& operator << (CFX_ByteTextBuf& buf, const CPDF_Object* pObj); |
| 18 class CPDF_ObjArchiveSaver : public CFX_ArchiveSaver | 16 class CPDF_ObjArchiveSaver : public CFX_ArchiveSaver |
| 19 { | 17 { |
| 20 public: | 18 public: |
| 21 | 19 |
| 22 friend CPDF_ObjArchiveSaver& operator << (CPDF_ObjArchiveSaver& ar, c
onst CPDF_Object* pObj); | 20 friend CPDF_ObjArchiveSaver& operator << (CPDF_ObjArchiveSaver& ar, c
onst CPDF_Object* pObj); |
| 23 protected: | 21 protected: |
| 24 | 22 |
| (...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 195 | 193 |
| 196 CFX_DWordListArray m_ObjectSize; | 194 CFX_DWordListArray m_ObjectSize; |
| 197 CFX_DWordArray m_NewObjNumArray; | 195 CFX_DWordArray m_NewObjNumArray; |
| 198 | 196 |
| 199 CPDF_Array* m_pIDArray; | 197 CPDF_Array* m_pIDArray; |
| 200 | 198 |
| 201 FX_INT32 m_FileVersion; | 199 FX_INT32 m_FileVersion; |
| 202 friend class CPDF_ObjectStream; | 200 friend class CPDF_ObjectStream; |
| 203 friend class CPDF_XRefStream; | 201 friend class CPDF_XRefStream; |
| 204 }; | 202 }; |
| 205 #endif | 203 |
| 204 #endif // CORE_INCLUDE_FPDFAPI_FPDF_SERIAL_H_ |
| OLD | NEW |