diff options
author | Michael Stahl <mstahl@redhat.com> | 2012-03-12 18:16:54 +0100 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2012-03-12 18:30:35 +0100 |
commit | 9365c975f8d2423c238961c0771ddeeae687f4cf (patch) | |
tree | 973521b9d35732c4a61593365795349291e77500 /sax/inc | |
parent | 0cd3740c1d09b1a2c3c09e869bcad058e0fbf174 (diff) |
sax: move xml2utf.cxx to libsax to prevent duplicate linkage warnings
Diffstat (limited to 'sax/inc')
-rw-r--r-- | sax/inc/xml2utf.hxx | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/sax/inc/xml2utf.hxx b/sax/inc/xml2utf.hxx index 175894a9874b..2421442f780f 100644 --- a/sax/inc/xml2utf.hxx +++ b/sax/inc/xml2utf.hxx @@ -26,6 +26,9 @@ * ************************************************************************/ +#include <sax/dllapi.h> + + // TODO: Woher? #define Max( a, b ) (((a)>(b)) ? (a) : (b) ) #define Min( a, b ) (((a)<(b)) ? (a) : (b) ) @@ -37,7 +40,7 @@ **/ namespace sax_expatwrap { -class Text2UnicodeConverter +class SAX_DLLPUBLIC Text2UnicodeConverter { public: @@ -63,7 +66,7 @@ private: * Unicode2TextConverter * **-----------------------------------------*/ -class Unicode2TextConverter +class SAX_DLLPUBLIC Unicode2TextConverter { public: Unicode2TextConverter( rtl_TextEncoding encoding ); @@ -94,7 +97,7 @@ private: * XMLFile2UTFConverter * **-----------------------------------------*/ -class XMLFile2UTFConverter +class SAX_DLLPUBLIC XMLFile2UTFConverter { public: XMLFile2UTFConverter( ): |