From 1e74c03acd39c000103b843d5acd3c0313da443a Mon Sep 17 00:00:00 2001 From: Jay Berkenbilt Date: Thu, 6 Aug 2009 19:00:25 +0000 Subject: stick DLL_EXPORT in front of every public method of every public class git-svn-id: svn+q:///qpdf/trunk@688 71b93d88-0707-0410-a8cf-f5a4172ac649 --- libqpdf/QPDFExc.cc | 3 +++ 1 file changed, 3 insertions(+) (limited to 'libqpdf/QPDFExc.cc') diff --git a/libqpdf/QPDFExc.cc b/libqpdf/QPDFExc.cc index c7270677..bac52e03 100644 --- a/libqpdf/QPDFExc.cc +++ b/libqpdf/QPDFExc.cc @@ -3,11 +3,13 @@ #include +DLL_EXPORT QPDFExc::QPDFExc(std::string const& message) : QEXC::General(message) { } +DLL_EXPORT QPDFExc::QPDFExc(std::string const& filename, int offset, std::string const& message) : QEXC::General(filename + ": offset " + QUtil::int_to_string(offset) + @@ -15,6 +17,7 @@ QPDFExc::QPDFExc(std::string const& filename, int offset, { } +DLL_EXPORT QPDFExc::~QPDFExc() throw () { } -- cgit v1.2.3-54-g00ecf