aboutsummaryrefslogtreecommitdiffstats
path: root/include/qpdf/QPDFXRefEntry.hh
diff options
context:
space:
mode:
authorJay Berkenbilt <ejb@ql.org>2009-08-06 21:00:25 +0200
committerJay Berkenbilt <ejb@ql.org>2009-08-06 21:00:25 +0200
commit1e74c03acd39c000103b843d5acd3c0313da443a (patch)
treec603b2c2bb95b46bc129a0c28e6f87c0bd84428a /include/qpdf/QPDFXRefEntry.hh
parented13d9074ef79847a10cfcfca32963c0883a2eb5 (diff)
downloadqpdf-1e74c03acd39c000103b843d5acd3c0313da443a.tar.zst
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
Diffstat (limited to 'include/qpdf/QPDFXRefEntry.hh')
-rw-r--r--include/qpdf/QPDFXRefEntry.hh8
1 files changed, 8 insertions, 0 deletions
diff --git a/include/qpdf/QPDFXRefEntry.hh b/include/qpdf/QPDFXRefEntry.hh
index 83d44770..26a047b2 100644
--- a/include/qpdf/QPDFXRefEntry.hh
+++ b/include/qpdf/QPDFXRefEntry.hh
@@ -8,6 +8,8 @@
#ifndef __QPDFXREFENTRY_HH__
#define __QPDFXREFENTRY_HH__
+#include <qpdf/DLL.hh>
+
class QPDFXRefEntry
{
public:
@@ -17,12 +19,18 @@ class QPDFXRefEntry
// 1 = "uncompressed"; field 1 = offset
// 2 = "compressed"; field 1 = object stream number, field 2 = index
+ DLL_EXPORT
QPDFXRefEntry();
+ DLL_EXPORT
QPDFXRefEntry(int type, int field1, int field2);
+ DLL_EXPORT
int getType() const;
+ DLL_EXPORT
int getOffset() const; // only for type 1
+ DLL_EXPORT
int getObjStreamNumber() const; // only for type 2
+ DLL_EXPORT
int getObjStreamIndex() const; // only for type 2
private: