summaryrefslogtreecommitdiffstats
path: root/libqpdf/Pl_ASCIIHexDecoder.cc
diff options
context:
space:
mode:
Diffstat (limited to 'libqpdf/Pl_ASCIIHexDecoder.cc')
-rw-r--r--libqpdf/Pl_ASCIIHexDecoder.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/libqpdf/Pl_ASCIIHexDecoder.cc b/libqpdf/Pl_ASCIIHexDecoder.cc
index d1b4ef1c..728e3eb8 100644
--- a/libqpdf/Pl_ASCIIHexDecoder.cc
+++ b/libqpdf/Pl_ASCIIHexDecoder.cc
@@ -4,6 +4,7 @@
#include <string.h>
#include <ctype.h>
+DLL_EXPORT
Pl_ASCIIHexDecoder::Pl_ASCIIHexDecoder(char const* identifier, Pipeline* next) :
Pipeline(identifier, next),
pos(0),
@@ -12,10 +13,12 @@ Pl_ASCIIHexDecoder::Pl_ASCIIHexDecoder(char const* identifier, Pipeline* next) :
strcpy(this->inbuf, "00");
}
+DLL_EXPORT
Pl_ASCIIHexDecoder::~Pl_ASCIIHexDecoder()
{
}
+DLL_EXPORT
void
Pl_ASCIIHexDecoder::write(unsigned char* buf, int len)
{
@@ -100,6 +103,7 @@ Pl_ASCIIHexDecoder::flush()
strcpy(this->inbuf, "00");
}
+DLL_EXPORT
void
Pl_ASCIIHexDecoder::finish()
{