| 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 _FDE_XML_IMP | 7 #ifndef FDE_XML_IMP_H_ |
| 8 #define _FDE_XML_IMP | 8 #define FDE_XML_IMP_H_ |
| 9 |
| 9 #define _FDE_BLOCK_BUFFER | 10 #define _FDE_BLOCK_BUFFER |
| 10 #ifdef _FDE_BLOCK_BUFFER | 11 #ifdef _FDE_BLOCK_BUFFER |
| 11 class CFDE_BlockBuffer; | 12 class CFDE_BlockBuffer; |
| 12 #endif | 13 #endif |
| 13 class CFDE_XMLNode; | 14 class CFDE_XMLNode; |
| 14 class CFDE_XMLInstruction; | 15 class CFDE_XMLInstruction; |
| 15 class CFDE_XMLElement; | 16 class CFDE_XMLElement; |
| 16 class CFDE_XMLText; | 17 class CFDE_XMLText; |
| 17 class CFDE_XMLDoc; | 18 class CFDE_XMLDoc; |
| 18 class IFDE_XMLParser; | 19 class IFDE_XMLParser; |
| (...skipping 344 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 363 FX_WCHAR m_wQuotationMark; | 364 FX_WCHAR m_wQuotationMark; |
| 364 int32_t m_iEntityStart; | 365 int32_t m_iEntityStart; |
| 365 CFX_DWordStack m_SkipStack; | 366 CFX_DWordStack m_SkipStack; |
| 366 FX_WCHAR m_SkipChar; | 367 FX_WCHAR m_SkipChar; |
| 367 inline void ParseTextChar(FX_WCHAR ch); | 368 inline void ParseTextChar(FX_WCHAR ch); |
| 368 #ifndef _FDE_BLOCK_BUFFER | 369 #ifndef _FDE_BLOCK_BUFFER |
| 369 void ReallocTextDataBuffer(); | 370 void ReallocTextDataBuffer(); |
| 370 void GetData(CFX_WideString& wsData) const; | 371 void GetData(CFX_WideString& wsData) const; |
| 371 #endif | 372 #endif |
| 372 }; | 373 }; |
| 373 #endif | 374 |
| 375 #endif // FDE_XML_IMP_H_ |
| OLD | NEW |