summaryrefslogtreecommitdiffstats
path: root/include/qpdf/QPDFExc.hh
diff options
context:
space:
mode:
authorJay Berkenbilt <ejb@ql.org>2009-10-21 03:45:13 +0200
committerJay Berkenbilt <ejb@ql.org>2009-10-21 03:45:13 +0200
commit27ee889c0e74e84035c2c208c856729a16d866c7 (patch)
tree4a9562232e327ff2a9d18f947121ea6895d3b38b /include/qpdf/QPDFExc.hh
parent95753c6b534d22951e254f221802ba09d6d71077 (diff)
downloadqpdf-27ee889c0e74e84035c2c208c856729a16d866c7.tar.zst
tweak dll stuff again
git-svn-id: svn+q:///qpdf/trunk@851 71b93d88-0707-0410-a8cf-f5a4172ac649
Diffstat (limited to 'include/qpdf/QPDFExc.hh')
-rw-r--r--include/qpdf/QPDFExc.hh14
1 files changed, 7 insertions, 7 deletions
diff --git a/include/qpdf/QPDFExc.hh b/include/qpdf/QPDFExc.hh
index 8fa7fedc..d2230469 100644
--- a/include/qpdf/QPDFExc.hh
+++ b/include/qpdf/QPDFExc.hh
@@ -15,13 +15,13 @@
class QPDFExc: public std::runtime_error
{
public:
- DLL_EXPORT
+ QPDF_DLL
QPDFExc(qpdf_error_code_e error_code,
std::string const& filename,
std::string const& object,
off_t offset,
std::string const& message);
- DLL_EXPORT
+ QPDF_DLL
virtual ~QPDFExc() throw ();
// To get a complete error string, call what(), provided by
@@ -34,15 +34,15 @@ class QPDFExc: public std::runtime_error
// the underlying issue, but it is more programmer-friendly than
// trying to parse a string that is subject to change.
- DLL_EXPORT
+ QPDF_DLL
qpdf_error_code_e getErrorCode() const;
- DLL_EXPORT
+ QPDF_DLL
std::string const& getFilename() const;
- DLL_EXPORT
+ QPDF_DLL
std::string const& getObject() const;
- DLL_EXPORT
+ QPDF_DLL
off_t getFilePosition() const;
- DLL_EXPORT
+ QPDF_DLL
std::string const& getMessageDetail() const;
private: