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 XFA_FXFA_PARSER_XFA_PARSER_IMP_H_ | 7 #ifndef XFA_FXFA_PARSER_XFA_PARSER_IMP_H_ |
8 #define XFA_FXFA_PARSER_XFA_PARSER_IMP_H_ | 8 #define XFA_FXFA_PARSER_XFA_PARSER_IMP_H_ |
9 | 9 |
10 #include "xfa/fde/xml/fde_xml_imp.h" | 10 #include "xfa/fde/xml/fde_xml_imp.h" |
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
127 | 127 |
128 protected: | 128 protected: |
129 CFDE_XMLNode* m_pRoot; | 129 CFDE_XMLNode* m_pRoot; |
130 IFX_Stream* m_pStream; | 130 IFX_Stream* m_pStream; |
131 CFDE_XMLSyntaxParser* m_pParser; | 131 CFDE_XMLSyntaxParser* m_pParser; |
132 CFDE_XMLNode* m_pParent; | 132 CFDE_XMLNode* m_pParent; |
133 CFDE_XMLNode* m_pChild; | 133 CFDE_XMLNode* m_pChild; |
134 CXFA_XMLNodeStack m_NodeStack; | 134 CXFA_XMLNodeStack m_NodeStack; |
135 CFX_WideString m_ws1; | 135 CFX_WideString m_ws1; |
136 CFX_WideString m_ws2; | 136 CFX_WideString m_ws2; |
137 uint32_t m_dwStatus; | 137 FDE_XmlSyntaxResult m_syntaxParserResult; |
138 }; | 138 }; |
139 | 139 |
140 #endif // XFA_FXFA_PARSER_XFA_PARSER_IMP_H_ | 140 #endif // XFA_FXFA_PARSER_XFA_PARSER_IMP_H_ |
OLD | NEW |