aboutsummaryrefslogtreecommitdiffstats
path: root/include/qpdf/Pipeline.hh
diff options
context:
space:
mode:
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;