aboutsummaryrefslogtreecommitdiffstats
path: root/libqpdf/Pl_Count.cc
diff options
context:
space:
mode:
Diffstat (limited to 'libqpdf/Pl_Count.cc')
-rw-r--r--libqpdf/Pl_Count.cc6
1 files changed, 0 insertions, 6 deletions
diff --git a/libqpdf/Pl_Count.cc b/libqpdf/Pl_Count.cc
index c9eb8597..c682b3e7 100644
--- a/libqpdf/Pl_Count.cc
+++ b/libqpdf/Pl_Count.cc
@@ -1,6 +1,5 @@
#include <qpdf/Pl_Count.hh>
-DLL_EXPORT
Pl_Count::Pl_Count(char const* identifier, Pipeline* next) :
Pipeline(identifier, next),
count(0),
@@ -8,12 +7,10 @@ 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)
{
@@ -25,21 +22,18 @@ 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
{