aboutsummaryrefslogtreecommitdiffstats
path: root/include/qpdf/Pipeline.hh
diff options
context:
space:
mode:
authorJay Berkenbilt <ejb@ql.org>2009-10-21 03:45:13 +0200
committerJay Berkenbilt <ejb@ql.org>2009-10-21 03:45:13 +0200
commit27ee889c0e74e84035c2c208c856729a16d866c7 (patch)
tree4a9562232e327ff2a9d18f947121ea6895d3b38b /include/qpdf/Pipeline.hh
parent95753c6b534d22951e254f221802ba09d6d71077 (diff)
downloadqpdf-27ee889c0e74e84035c2c208c856729a16d866c7.tar.zst
tweak dll stuff again
git-svn-id: svn+q:///qpdf/trunk@851 71b93d88-0707-0410-a8cf-f5a4172ac649
Diffstat (limited to 'include/qpdf/Pipeline.hh')
-rw-r--r--include/qpdf/Pipeline.hh9
1 files changed, 4 insertions, 5 deletions
diff --git a/include/qpdf/Pipeline.hh b/include/qpdf/Pipeline.hh
index 7e248c1c..6f933f0b 100644
--- a/include/qpdf/Pipeline.hh
+++ b/include/qpdf/Pipeline.hh
@@ -36,22 +36,21 @@
class Pipeline
{
public:
- DLL_EXPORT
+ QPDF_DLL
Pipeline(char const* identifier, Pipeline* next);
- DLL_EXPORT
+ QPDF_DLL
virtual ~Pipeline();
// Subclasses should implement write and finish to do their jobs
// and then, if they are not end-of-line pipelines, call
// getNext()->write or getNext()->finish.
- DLL_EXPORT
+ QPDF_DLL
virtual void write(unsigned char* data, int len) = 0;
- DLL_EXPORT
+ QPDF_DLL
virtual void finish() = 0;
protected:
- DLL_EXPORT
Pipeline* getNext(bool allow_null = false);
std::string identifier;