OLD | NEW |
| (Empty) |
1 // Copyright 2014 PDFium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com | |
6 | |
7 #ifndef XFA_SRC_FXFA_PARSER_XFA_DOCDATA_H_ | |
8 #define XFA_SRC_FXFA_PARSER_XFA_DOCDATA_H_ | |
9 | |
10 #include "xfa/src/fxfa/parser/xfa_document.h" | |
11 | |
12 enum XFA_DATAFORMAT { | |
13 XFA_DATAFORMAT_XDP, | |
14 }; | |
15 | |
16 class IXFA_PacketExport { | |
17 public: | |
18 static IXFA_PacketExport* Create(CXFA_Document* pDocument, | |
19 XFA_DATAFORMAT eFormat = XFA_DATAFORMAT_XDP); | |
20 virtual ~IXFA_PacketExport() {} | |
21 virtual void Release() = 0; | |
22 virtual FX_BOOL Export(IFX_FileWrite* pWrite) = 0; | |
23 virtual FX_BOOL Export(IFX_FileWrite* pWrite, | |
24 CXFA_Node* pNode, | |
25 FX_DWORD dwFlag = 0, | |
26 const FX_CHAR* pChecksum = NULL) = 0; | |
27 }; | |
28 class IXFA_PacketImport { | |
29 public: | |
30 static IXFA_PacketImport* Create(CXFA_Document* pDstDoc); | |
31 virtual ~IXFA_PacketImport() {} | |
32 virtual void Release() = 0; | |
33 virtual FX_BOOL ImportData(IFX_FileRead* pDataDocument) = 0; | |
34 }; | |
35 | |
36 #endif // XFA_SRC_FXFA_PARSER_XFA_DOCDATA_H_ | |
OLD | NEW |