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