aboutsummaryrefslogtreecommitdiffstats
path: root/include/qpdf/Buffer.hh
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 /include/qpdf/Buffer.hh
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 'include/qpdf/Buffer.hh')
-rw-r--r--include/qpdf/Buffer.hh10
1 files changed, 10 insertions, 0 deletions
diff --git a/include/qpdf/Buffer.hh b/include/qpdf/Buffer.hh
index a7a7ceae..c4f03768 100644
--- a/include/qpdf/Buffer.hh
+++ b/include/qpdf/Buffer.hh
@@ -8,16 +8,26 @@
#ifndef __BUFFER_HH__
#define __BUFFER_HH__
+#include <qpdf/DLL.hh>
+
class Buffer
{
public:
+ DLL_EXPORT
Buffer();
+ DLL_EXPORT
Buffer(unsigned long size);
+ DLL_EXPORT
Buffer(Buffer const&);
+ DLL_EXPORT
Buffer& operator=(Buffer const&);
+ DLL_EXPORT
~Buffer();
+ DLL_EXPORT
unsigned long getSize() const;
+ DLL_EXPORT
unsigned char const* getBuffer() const;
+ DLL_EXPORT
unsigned char* getBuffer();
private: