aboutsummaryrefslogtreecommitdiffstats
path: root/libqpdf/Buffer.cc
diff options
context:
space:
mode:
Diffstat (limited to 'libqpdf/Buffer.cc')
-rw-r--r--libqpdf/Buffer.cc8
1 files changed, 0 insertions, 8 deletions
diff --git a/libqpdf/Buffer.cc b/libqpdf/Buffer.cc
index 2d1763bb..0c2dd958 100644
--- a/libqpdf/Buffer.cc
+++ b/libqpdf/Buffer.cc
@@ -2,26 +2,22 @@
#include <string.h>
-DLL_EXPORT
Buffer::Buffer()
{
init(0);
}
-DLL_EXPORT
Buffer::Buffer(unsigned long size)
{
init(size);
}
-DLL_EXPORT
Buffer::Buffer(Buffer const& rhs)
{
init(0);
copy(rhs);
}
-DLL_EXPORT
Buffer&
Buffer::operator=(Buffer const& rhs)
{
@@ -29,7 +25,6 @@ Buffer::operator=(Buffer const& rhs)
return *this;
}
-DLL_EXPORT
Buffer::~Buffer()
{
destroy();
@@ -64,21 +59,18 @@ Buffer::destroy()
this->buf = 0;
}
-DLL_EXPORT
unsigned long
Buffer::getSize() const
{
return this->size;
}
-DLL_EXPORT
unsigned char const*
Buffer::getBuffer() const
{
return this->buf;
}
-DLL_EXPORT
unsigned char*
Buffer::getBuffer()
{