2
1
mirror of https://github.com/qpdf/qpdf.git synced 2024-06-04 03:10:52 +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:
Jay Berkenbilt 2009-09-27 01:56:41 +00:00
parent f3d7c26de1
commit 82ea3dd3a7
2 changed files with 0 additions and 9 deletions

View File

@ -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) :

View File

@ -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