From 1e74c03acd39c000103b843d5acd3c0313da443a Mon Sep 17 00:00:00 2001 From: Jay Berkenbilt Date: Thu, 6 Aug 2009 19:00:25 +0000 Subject: stick DLL_EXPORT in front of every public method of every public class git-svn-id: svn+q:///qpdf/trunk@688 71b93d88-0707-0410-a8cf-f5a4172ac649 --- libqpdf/QPDFXRefEntry.cc | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'libqpdf/QPDFXRefEntry.cc') diff --git a/libqpdf/QPDFXRefEntry.cc b/libqpdf/QPDFXRefEntry.cc index 669a2f13..68c58689 100644 --- a/libqpdf/QPDFXRefEntry.cc +++ b/libqpdf/QPDFXRefEntry.cc @@ -3,6 +3,7 @@ #include #include +DLL_EXPORT QPDFXRefEntry::QPDFXRefEntry() : type(0), field1(0), @@ -10,6 +11,7 @@ QPDFXRefEntry::QPDFXRefEntry() : { } +DLL_EXPORT QPDFXRefEntry::QPDFXRefEntry(int type, int field1, int field2) : type(type), field1(field1), @@ -21,12 +23,14 @@ QPDFXRefEntry::QPDFXRefEntry(int type, int field1, int field2) : } } +DLL_EXPORT int QPDFXRefEntry::getType() const { return this->type; } +DLL_EXPORT int QPDFXRefEntry::getOffset() const { @@ -38,6 +42,7 @@ QPDFXRefEntry::getOffset() const return this->field1; } +DLL_EXPORT int QPDFXRefEntry::getObjStreamNumber() const { @@ -49,6 +54,7 @@ QPDFXRefEntry::getObjStreamNumber() const return this->field1; } +DLL_EXPORT int QPDFXRefEntry::getObjStreamIndex() const { -- cgit v1.2.3-54-g00ecf