mirror of
https://github.com/qpdf/qpdf.git
synced 2025-01-31 02:48:31 +00:00
don't dll export inline functions
git-svn-id: svn+q:///qpdf/trunk@712 71b93d88-0707-0410-a8cf-f5a4172ac649
This commit is contained in:
parent
f3d7c26de1
commit
82ea3dd3a7
@ -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) :
|
||||
|
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user