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 CORE_INCLUDE_FPDFAPI_FPDF_PAGE_H_ | 7 #ifndef CORE_INCLUDE_FPDFAPI_FPDF_PAGE_H_ |
8 #define CORE_INCLUDE_FPDFAPI_FPDF_PAGE_H_ | 8 #define CORE_INCLUDE_FPDFAPI_FPDF_PAGE_H_ |
9 | 9 |
10 #include "../fxge/fx_dib.h" | 10 #include "core/include/fxge/fx_dib.h" |
11 #include "fpdf_parser.h" | 11 #include "fpdf_parser.h" |
12 #include "fpdf_resource.h" | 12 #include "fpdf_resource.h" |
13 | 13 |
14 class CPDF_PageObjects; | 14 class CPDF_PageObjects; |
15 class CPDF_Page; | 15 class CPDF_Page; |
16 class CPDF_Form; | 16 class CPDF_Form; |
17 class CPDF_ParseOptions; | 17 class CPDF_ParseOptions; |
18 class CPDF_PageObject; | 18 class CPDF_PageObject; |
19 class CPDF_PageRenderCache; | 19 class CPDF_PageRenderCache; |
20 class CPDF_StreamFilter; | 20 class CPDF_StreamFilter; |
(...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
193 CFX_ByteString RealizeResource(CPDF_Object* pResourceObj, | 193 CFX_ByteString RealizeResource(CPDF_Object* pResourceObj, |
194 const FX_CHAR* szType); | 194 const FX_CHAR* szType); |
195 | 195 |
196 private: | 196 private: |
197 CPDF_Page* m_pPage; | 197 CPDF_Page* m_pPage; |
198 CPDF_Document* m_pDocument; | 198 CPDF_Document* m_pDocument; |
199 CFX_PtrArray m_pageObjects; | 199 CFX_PtrArray m_pageObjects; |
200 }; | 200 }; |
201 | 201 |
202 #endif // CORE_INCLUDE_FPDFAPI_FPDF_PAGE_H_ | 202 #endif // CORE_INCLUDE_FPDFAPI_FPDF_PAGE_H_ |
OLD | NEW |