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_INCLUDE_FPDFAPI_IPDF_DATA_AVAIL_H_ | 7 #ifndef CORE_FPDFAPI_FPDF_PARSER_INCLUDE_IPDF_DATA_AVAIL_H_ |
8 #define CORE_INCLUDE_FPDFAPI_IPDF_DATA_AVAIL_H_ | 8 #define CORE_FPDFAPI_FPDF_PARSER_INCLUDE_IPDF_DATA_AVAIL_H_ |
9 | 9 |
10 #include "core/include/fxcrt/fx_stream.h" | 10 #include "core/include/fxcrt/fx_stream.h" |
11 #include "core/include/fxcrt/fx_system.h" | 11 #include "core/include/fxcrt/fx_system.h" |
12 | 12 |
13 class CPDF_Document; | 13 class CPDF_Document; |
14 class CPDF_Object; | 14 class CPDF_Object; |
15 | 15 |
16 class IPDF_DataAvail { | 16 class IPDF_DataAvail { |
17 public: | 17 public: |
18 // Must match PDF_DATA_* definitions in public/fpdf_dataavail.h, but cannot | 18 // Must match PDF_DATA_* definitions in public/fpdf_dataavail.h, but cannot |
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
70 virtual void GetLinearizedMainXRefInfo(FX_FILESIZE* pPos, | 70 virtual void GetLinearizedMainXRefInfo(FX_FILESIZE* pPos, |
71 FX_DWORD* pSize) = 0; | 71 FX_DWORD* pSize) = 0; |
72 | 72 |
73 protected: | 73 protected: |
74 IPDF_DataAvail(FileAvail* pFileAvail, IFX_FileRead* pFileRead); | 74 IPDF_DataAvail(FileAvail* pFileAvail, IFX_FileRead* pFileRead); |
75 | 75 |
76 FileAvail* m_pFileAvail; | 76 FileAvail* m_pFileAvail; |
77 IFX_FileRead* m_pFileRead; | 77 IFX_FileRead* m_pFileRead; |
78 }; | 78 }; |
79 | 79 |
80 #endif // CORE_INCLUDE_FPDFAPI_IPDF_DATA_AVAIL_H_ | 80 #endif // CORE_FPDFAPI_FPDF_PARSER_INCLUDE_IPDF_DATA_AVAIL_H_ |
OLD | NEW |