]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/dcsvg.h
Added wxRTTI information to wxNumberEntryDialog.
[wxWidgets.git] / include / wx / dcsvg.h
index 289f1eaccbef2dd32f528359b30bc711469c4420..fefeea50843e3d93683e1f438bd8d8604dbf3a56 100644 (file)
@@ -3,6 +3,14 @@
 #include <wx/wfstream.h>
 #include <wx/string.h>
 
+#ifdef WXMAKINGDLL_SVG
+    #define WXDLLIMPEXP_SVG WXEXPORT
+#elif defined(WXUSINGDLL)
+    #define WXDLLIMPEXP_SVG WXIMPORT
+#else // not making nor using DLL
+    #define WXDLLIMPEXP_SVG
+#endif
+
 #define wxSVGVersion wxT("v0100")
 #ifdef __BORLANDC__
 #pragma warn -rch
@@ -20,7 +28,7 @@
 #define mm2pt            2.83464566929
 #define pt2mm            0.352777777778
 
-class wxSVGFileDC : public wxDC
+class WXDLLIMPEXP_SVG wxSVGFileDC : public wxDC
 {
 
     private:
@@ -183,6 +191,7 @@ class wxSVGFileDC : public wxDC
                 return (wxCoord)((double)(y) * m_scaleY - 0.5);
         }
 
+       void write(const wxString &s);
 
     public: