aboutsummaryrefslogtreecommitdiffstats
path: root/libqpdf/Pl_Buffer.cc
diff options
context:
space:
mode:
authorJay Berkenbilt <ejb@ql.org>2009-10-12 03:15:55 +0200
committerJay Berkenbilt <ejb@ql.org>2009-10-12 03:15:55 +0200
commit44cbd3d4b477f855d46259f7fbc743c0b96c7678 (patch)
tree9494d086d2720da5339cf832b82a913e2c0332d9 /libqpdf/Pl_Buffer.cc
parent3444a5a52ad2d2eec89265498b7f6b76b7c5b2fa (diff)
downloadqpdf-44cbd3d4b477f855d46259f7fbc743c0b96c7678.tar.zst
do DLL_EXPORT only in header files and only at the class or top-level function level
git-svn-id: svn+q:///qpdf/trunk@796 71b93d88-0707-0410-a8cf-f5a4172ac649
Diffstat (limited to 'libqpdf/Pl_Buffer.cc')
-rw-r--r--libqpdf/Pl_Buffer.cc5
1 files changed, 0 insertions, 5 deletions
diff --git a/libqpdf/Pl_Buffer.cc b/libqpdf/Pl_Buffer.cc
index cdbad568..1729b2c3 100644
--- a/libqpdf/Pl_Buffer.cc
+++ b/libqpdf/Pl_Buffer.cc
@@ -3,7 +3,6 @@
#include <assert.h>
#include <string.h>
-DLL_EXPORT
Pl_Buffer::Pl_Buffer(char const* identifier, Pipeline* next) :
Pipeline(identifier, next),
ready(false),
@@ -11,12 +10,10 @@ Pl_Buffer::Pl_Buffer(char const* identifier, Pipeline* next) :
{
}
-DLL_EXPORT
Pl_Buffer::~Pl_Buffer()
{
}
-DLL_EXPORT
void
Pl_Buffer::write(unsigned char* buf, int len)
{
@@ -32,7 +29,6 @@ Pl_Buffer::write(unsigned char* buf, int len)
}
}
-DLL_EXPORT
void
Pl_Buffer::finish()
{
@@ -43,7 +39,6 @@ Pl_Buffer::finish()
}
}
-DLL_EXPORT
Buffer*
Pl_Buffer::getBuffer()
{