| 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_DOCUMENT_H_ | 7 #ifndef XFA_FXFA_PARSER_XFA_DOCUMENT_H_ |
| 8 #define XFA_FXFA_PARSER_XFA_DOCUMENT_H_ | 8 #define XFA_FXFA_PARSER_XFA_DOCUMENT_H_ |
| 9 | 9 |
| 10 #include "xfa/fxfa/include/fxfa.h" | 10 #include "xfa/fxfa/include/fxfa.h" |
| 11 #include "xfa/fxfa/parser/xfa_localemgr.h" | 11 #include "xfa/fxfa/parser/xfa_localemgr.h" |
| 12 #include "xfa/fxfa/parser/xfa_object.h" | 12 #include "xfa/fxfa/parser/xfa_object.h" |
| 13 #include "xfa/fxfa/parser/xfa_parser_imp.h" | |
| 14 | 13 |
| 14 class CFDE_XMLDoc; |
| 15 class CXFA_Document; | 15 class CXFA_Document; |
| 16 class CXFA_LayoutItem; | 16 class CXFA_LayoutItem; |
| 17 class CXFA_LayoutProcessor; | 17 class CXFA_LayoutProcessor; |
| 18 class CXFA_Node; | 18 class CXFA_Node; |
| 19 class CXFA_LayoutProcessor; | 19 class CXFA_LayoutProcessor; |
| 20 class CXFA_DocumentParser; | 20 class CXFA_DocumentParser; |
| 21 class CXFA_ContainerLayoutItem; | 21 class CXFA_ContainerLayoutItem; |
| 22 class CXFA_FFNotify; | 22 class CXFA_FFNotify; |
| 23 class CXFA_ScriptContext; | 23 class CXFA_ScriptContext; |
| 24 | 24 |
| (...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 114 CScript_LogPseudoModel* m_pScriptLog; | 114 CScript_LogPseudoModel* m_pScriptLog; |
| 115 CScript_LayoutPseudoModel* m_pScriptLayout; | 115 CScript_LayoutPseudoModel* m_pScriptLayout; |
| 116 CScript_SignaturePseudoModel* m_pScriptSignature; | 116 CScript_SignaturePseudoModel* m_pScriptSignature; |
| 117 CXFA_NodeSet m_PurgeNodes; | 117 CXFA_NodeSet m_PurgeNodes; |
| 118 XFA_VERSION m_eCurVersionMode; | 118 XFA_VERSION m_eCurVersionMode; |
| 119 uint32_t m_dwDocFlags; | 119 uint32_t m_dwDocFlags; |
| 120 friend class CXFA_SimpleParser; | 120 friend class CXFA_SimpleParser; |
| 121 }; | 121 }; |
| 122 | 122 |
| 123 #endif // XFA_FXFA_PARSER_XFA_DOCUMENT_H_ | 123 #endif // XFA_FXFA_PARSER_XFA_DOCUMENT_H_ |
| OLD | NEW |