| 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_FPDFDOC_INCLUDE_FPDF_TAGGED_H_ | 7 #ifndef CORE_FPDFDOC_FPDF_TAGGED_H_ |
| 8 #define CORE_FPDFDOC_INCLUDE_FPDF_TAGGED_H_ | 8 #define CORE_FPDFDOC_FPDF_TAGGED_H_ |
| 9 | 9 |
| 10 #include "core/fxge/include/fx_dib.h" | 10 #include "core/fxge/include/fx_dib.h" |
| 11 | 11 |
| 12 class CPDF_Dictionary; | 12 class CPDF_Dictionary; |
| 13 class CPDF_Document; | 13 class CPDF_Document; |
| 14 class IPDF_StructElement; | 14 class IPDF_StructElement; |
| 15 | 15 |
| 16 class IPDF_StructTree { | 16 class IPDF_StructTree { |
| 17 public: | 17 public: |
| 18 static IPDF_StructTree* LoadDoc(const CPDF_Document* pDoc); | 18 static IPDF_StructTree* LoadDoc(const CPDF_Document* pDoc); |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 FX_BOOL bInheritable = FALSE, | 83 FX_BOOL bInheritable = FALSE, |
| 84 int subindex = -1) = 0; | 84 int subindex = -1) = 0; |
| 85 | 85 |
| 86 virtual int GetInteger(const CFX_ByteStringC& owner, | 86 virtual int GetInteger(const CFX_ByteStringC& owner, |
| 87 const CFX_ByteStringC& name, | 87 const CFX_ByteStringC& name, |
| 88 int default_value, | 88 int default_value, |
| 89 FX_BOOL bInheritable = FALSE, | 89 FX_BOOL bInheritable = FALSE, |
| 90 int subindex = -1) = 0; | 90 int subindex = -1) = 0; |
| 91 }; | 91 }; |
| 92 | 92 |
| 93 #endif // CORE_FPDFDOC_INCLUDE_FPDF_TAGGED_H_ | 93 #endif // CORE_FPDFDOC_FPDF_TAGGED_H_ |
| OLD | NEW |