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/Pl_Count.cc | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'libqpdf/Pl_Count.cc') 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 +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 { -- cgit v1.2.3-54-g00ecf