XFA: xfa engine parsing template

This commit is contained in:
Jakub Melka
2021-11-04 20:01:30 +01:00
parent 624794554c
commit f739e9f544
5 changed files with 92 additions and 2 deletions

View File

@ -19,12 +19,14 @@
#define PDFXFAENGINE_H
#include "pdfglobal.h"
#include "pdfdocument.h"
#include <memory>
namespace pdf
{
class PDFForm;
class PDFXFAEngineImpl;
class PDFXFAEngine
@ -33,6 +35,8 @@ public:
PDFXFAEngine();
~PDFXFAEngine();
void setDocument(const PDFModifiedDocument& document, PDFForm* form);
private:
std::unique_ptr<PDFXFAEngineImpl> m_impl;
};