aboutsummaryrefslogtreecommitdiffstats
path: root/libqpdf/Pl_MD5.cc
diff options
context:
space:
mode:
Diffstat (limited to 'libqpdf/Pl_MD5.cc')
-rw-r--r--libqpdf/Pl_MD5.cc5
1 files changed, 0 insertions, 5 deletions
diff --git a/libqpdf/Pl_MD5.cc b/libqpdf/Pl_MD5.cc
index 1fe91bf5..29787625 100644
--- a/libqpdf/Pl_MD5.cc
+++ b/libqpdf/Pl_MD5.cc
@@ -1,19 +1,16 @@
#include <qpdf/Pl_MD5.hh>
#include <stdexcept>
-DLL_EXPORT
Pl_MD5::Pl_MD5(char const* identifier, Pipeline* next) :
Pipeline(identifier, next),
in_progress(false)
{
}
-DLL_EXPORT
Pl_MD5::~Pl_MD5()
{
}
-DLL_EXPORT
void
Pl_MD5::write(unsigned char* buf, int len)
{
@@ -26,7 +23,6 @@ Pl_MD5::write(unsigned char* buf, int len)
this->getNext()->write(buf, len);
}
-DLL_EXPORT
void
Pl_MD5::finish()
{
@@ -34,7 +30,6 @@ Pl_MD5::finish()
this->in_progress = false;
}
-DLL_EXPORT
std::string
Pl_MD5::getHexDigest()
{