summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/qpdf/QPDF.hh1
-rw-r--r--include/qpdf/QPDFTokenizer.hh8
2 files changed, 0 insertions, 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