2
1
mirror of https://github.com/qpdf/qpdf.git synced 2025-01-23 07:08:30 +00:00

Windows fixes

This commit is contained in:
Jay Berkenbilt 2018-06-22 16:49:26 -04:00
parent c852af2a57
commit 5db39a681a
7 changed files with 19 additions and 0 deletions

View File

@ -83,6 +83,7 @@
class QPDFAcroFormDocumentHelper: public QPDFDocumentHelper
{
public:
QPDF_DLL
QPDFAcroFormDocumentHelper(QPDF&);
// This class lazily creates an internal cache of the mapping
@ -163,6 +164,7 @@ class QPDFAcroFormDocumentHelper: public QPDFDocumentHelper
friend class QPDFAcroFormDocumentHelper;
public:
QPDF_DLL
~Members();
private:

View File

@ -29,6 +29,7 @@
class QPDFAnnotationObjectHelper: public QPDFObjectHelper
{
public:
QPDF_DLL
QPDFAnnotationObjectHelper(QPDFObjectHandle);
// This class provides helper methods for certain types of
@ -73,6 +74,7 @@ class QPDFAnnotationObjectHelper: public QPDFObjectHelper
friend class QPDFPageObjectHelper;
public:
QPDF_DLL
~Members();
private:

View File

@ -45,6 +45,10 @@ class QPDFDocumentHelper
{
}
QPDF_DLL
virtual ~QPDFDocumentHelper()
{
}
QPDF_DLL
QPDF& getQPDF()
{
return this->qpdf;

View File

@ -33,7 +33,9 @@
class QPDFFormFieldObjectHelper: public QPDFObjectHelper
{
public:
QPDF_DLL
QPDFFormFieldObjectHelper();
QPDF_DLL
QPDFFormFieldObjectHelper(QPDFObjectHandle);
QPDF_DLL
@ -143,6 +145,7 @@ class QPDFFormFieldObjectHelper: public QPDFObjectHelper
friend class QPDFFormFieldObjectHelper;
public:
QPDF_DLL
~Members();
private:

View File

@ -46,6 +46,10 @@ class QPDFObjectHelper
{
}
QPDF_DLL
virtual ~QPDFObjectHelper()
{
}
QPDF_DLL
QPDFObjectHandle getObjectHandle()
{
return this->oh;

View File

@ -34,6 +34,7 @@
class QPDFPageDocumentHelper: public QPDFDocumentHelper
{
public:
QPDF_DLL
QPDFPageDocumentHelper(QPDF&);
// Traverse page tree, and return all /Page objects wrapped in
@ -85,6 +86,7 @@ class QPDFPageDocumentHelper: public QPDFDocumentHelper
friend class QPDFPageDocumentHelper;
public:
QPDF_DLL
~Members();
private:

View File

@ -32,6 +32,7 @@
class QPDFPageObjectHelper: public QPDFObjectHelper
{
public:
QPDF_DLL
QPDFPageObjectHelper(QPDFObjectHandle);
// Returns an empty map if there are no images or no resources.
@ -141,6 +142,7 @@ class QPDFPageObjectHelper: public QPDFObjectHelper
friend class QPDFPageObjectHelper;
public:
QPDF_DLL
~Members();
private: