aboutsummaryrefslogtreecommitdiffstats
path: root/libqpdf/Pl_Count.cc
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 /libqpdf/Pl_Count.cc
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 'libqpdf/Pl_Count.cc')
-rw-r--r--libqpdf/Pl_Count.cc6
1 files changed, 6 insertions, 0 deletions
diff --git a/libqpdf/Pl_Count.cc b/libqpdf/Pl_Count.cc
index 8a361ad5..81ef7033 100644
--- a/libqpdf/Pl_Count.cc
+++ b/libqpdf/Pl_Count.cc
@@ -1,6 +1,7 @@
#include <qpdf/Pl_Count.hh>
+DLL_EXPORT
Pl_Count::Pl_Count(char const* identifier, Pipeline* next) :
Pipeline(identifier, next),
count(0),
@@ -8,10 +9,12 @@ Pl_Count::Pl_Count(char const* identifier, Pipeline* next) :
{
}
+DLL_EXPORT
Pl_Count::~Pl_Count()
{
}
+DLL_EXPORT
void
Pl_Count::write(unsigned char* buf, int len)
{
@@ -23,18 +26,21 @@ Pl_Count::write(unsigned char* buf, int len)
}
}
+DLL_EXPORT
void
Pl_Count::finish()
{
getNext()->finish();
}
+DLL_EXPORT
int
Pl_Count::getCount() const
{
return this->count;
}
+DLL_EXPORT
unsigned char
Pl_Count::getLastChar() const
{