| 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_DOCUMENT_H | 7 #ifndef XFA_SRC_FXFA_SRC_COMMON_XFA_DOCUMENT_H_ |
| 8 #define _XFA_DOCUMENT_H | 8 #define XFA_SRC_FXFA_SRC_COMMON_XFA_DOCUMENT_H_ |
| 9 | 9 |
| 10 class CXFA_Document; | 10 class CXFA_Document; |
| 11 class CXFA_LayoutItem; | 11 class CXFA_LayoutItem; |
| 12 class CXFA_LayoutProcessor; | 12 class CXFA_LayoutProcessor; |
| 13 class CXFA_Node; | 13 class CXFA_Node; |
| 14 class IXFA_DocLayout; | 14 class IXFA_DocLayout; |
| 15 class IXFA_DocParser; | 15 class IXFA_DocParser; |
| 16 class IXFA_LayoutPage; | 16 class IXFA_LayoutPage; |
| 17 class IXFA_Notify; | 17 class IXFA_Notify; |
| 18 class IXFA_ObjFactory; | 18 class IXFA_ObjFactory; |
| (...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 186 CScript_EventPseudoModel* m_pScriptEvent; | 186 CScript_EventPseudoModel* m_pScriptEvent; |
| 187 CScript_HostPseudoModel* m_pScriptHost; | 187 CScript_HostPseudoModel* m_pScriptHost; |
| 188 CScript_LogPseudoModel* m_pScriptLog; | 188 CScript_LogPseudoModel* m_pScriptLog; |
| 189 CScript_LayoutPseudoModel* m_pScriptLayout; | 189 CScript_LayoutPseudoModel* m_pScriptLayout; |
| 190 CScript_SignaturePseudoModel* m_pScriptSignature; | 190 CScript_SignaturePseudoModel* m_pScriptSignature; |
| 191 CXFA_NodeSet m_rgPurgeNodes; | 191 CXFA_NodeSet m_rgPurgeNodes; |
| 192 XFA_VERSION m_eCurVersionMode; | 192 XFA_VERSION m_eCurVersionMode; |
| 193 FX_DWORD m_dwDocFlags; | 193 FX_DWORD m_dwDocFlags; |
| 194 friend class CXFA_SimpleParser; | 194 friend class CXFA_SimpleParser; |
| 195 }; | 195 }; |
| 196 #endif | 196 |
| 197 #endif // XFA_SRC_FXFA_SRC_COMMON_XFA_DOCUMENT_H_ |
| OLD | NEW |