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