summaryrefslogtreecommitdiffstats
path: root/include/qpdf/QPDFWriter.hh
diff options
context:
space:
mode:
Diffstat (limited to 'include/qpdf/QPDFWriter.hh')
-rw-r--r--include/qpdf/QPDFWriter.hh4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/qpdf/QPDFWriter.hh b/include/qpdf/QPDFWriter.hh
index 245e11f3..8c076bbd 100644
--- a/include/qpdf/QPDFWriter.hh
+++ b/include/qpdf/QPDFWriter.hh
@@ -81,6 +81,7 @@ class QPDFWriter
class QPDF_DLL_CLASS ProgressReporter
{
public:
+ QPDF_DLL
virtual ~ProgressReporter();
// This method is called with a value from 0 to 100 to
@@ -95,8 +96,11 @@ class QPDFWriter
class QPDF_DLL_CLASS FunctionProgressReporter: public ProgressReporter
{
public:
+ QPDF_DLL
FunctionProgressReporter(std::function<void(int)>);
+ QPDF_DLL
virtual ~FunctionProgressReporter();
+ QPDF_DLL
virtual void reportProgress(int) override;
private: