From 82ea3dd3a7fd06278056a5703ed4c264c9fdfe8d Mon Sep 17 00:00:00 2001 From: Jay Berkenbilt Date: Sun, 27 Sep 2009 01:56:41 +0000 Subject: don't dll export inline functions git-svn-id: svn+q:///qpdf/trunk@712 71b93d88-0707-0410-a8cf-f5a4172ac649 --- include/qpdf/QPDF.hh | 1 - include/qpdf/QPDFTokenizer.hh | 8 -------- 2 files changed, 9 deletions(-) diff --git a/include/qpdf/QPDF.hh b/include/qpdf/QPDF.hh index 400328d7..9ac0b7d4 100644 --- a/include/qpdf/QPDF.hh +++ b/include/qpdf/QPDF.hh @@ -100,7 +100,6 @@ class QPDF struct EncryptionData { // This class holds data read from the encryption dictionary. - DLL_EXPORT EncryptionData(int V, int R, int Length_bytes, int P, std::string const& O, std::string const& U, std::string const& id1) : diff --git a/include/qpdf/QPDFTokenizer.hh b/include/qpdf/QPDFTokenizer.hh index 17885469..de740e66 100644 --- a/include/qpdf/QPDFTokenizer.hh +++ b/include/qpdf/QPDFTokenizer.hh @@ -37,17 +37,14 @@ class QPDFTokenizer class Token { public: - DLL_EXPORT Token() : type(tt_bad) {} - DLL_EXPORT Token(token_type_e type, std::string const& value) : type(type), value(value) { } - DLL_EXPORT Token(token_type_e type, std::string const& value, std::string raw_value, std::string error_message) : type(type), @@ -56,27 +53,22 @@ class QPDFTokenizer error_message(error_message) { } - DLL_EXPORT token_type_e getType() const { return this->type; } - DLL_EXPORT std::string const& getValue() const { return this->value; } - DLL_EXPORT std::string const& getRawValue() const { return this->raw_value; } - DLL_EXPORT std::string const& getErrorMessage() const { return this->error_message; } - DLL_EXPORT bool operator==(Token const& rhs) { // Ignore fields other than type and value -- cgit v1.2.3-54-g00ecf