Commit 82ea3dd3a7fd06278056a5703ed4c264c9fdfe8d

Authored by Jay Berkenbilt
1 parent f3d7c26d

don't dll export inline functions

git-svn-id: svn+q:///qpdf/trunk@712 71b93d88-0707-0410-a8cf-f5a4172ac649
include/qpdf/QPDF.hh
... ... @@ -100,7 +100,6 @@ class QPDF
100 100 struct EncryptionData
101 101 {
102 102 // This class holds data read from the encryption dictionary.
103   - DLL_EXPORT
104 103 EncryptionData(int V, int R, int Length_bytes, int P,
105 104 std::string const& O, std::string const& U,
106 105 std::string const& id1) :
... ...
include/qpdf/QPDFTokenizer.hh
... ... @@ -37,17 +37,14 @@ class QPDFTokenizer
37 37 class Token
38 38 {
39 39 public:
40   - DLL_EXPORT
41 40 Token() : type(tt_bad) {}
42 41  
43   - DLL_EXPORT
44 42 Token(token_type_e type, std::string const& value) :
45 43 type(type),
46 44 value(value)
47 45 {
48 46 }
49 47  
50   - DLL_EXPORT
51 48 Token(token_type_e type, std::string const& value,
52 49 std::string raw_value, std::string error_message) :
53 50 type(type),
... ... @@ -56,27 +53,22 @@ class QPDFTokenizer
56 53 error_message(error_message)
57 54 {
58 55 }
59   - DLL_EXPORT
60 56 token_type_e getType() const
61 57 {
62 58 return this->type;
63 59 }
64   - DLL_EXPORT
65 60 std::string const& getValue() const
66 61 {
67 62 return this->value;
68 63 }
69   - DLL_EXPORT
70 64 std::string const& getRawValue() const
71 65 {
72 66 return this->raw_value;
73 67 }
74   - DLL_EXPORT
75 68 std::string const& getErrorMessage() const
76 69 {
77 70 return this->error_message;
78 71 }
79   - DLL_EXPORT
80 72 bool operator==(Token const& rhs)
81 73 {
82 74 // Ignore fields other than type and value
... ...