]> Creatis software - crea.git/blobdiff - src/creaWx.h
Include missing for MacOSX
[crea.git] / src / creaWx.h
index eee7414a4a737dabcb0e9bc3b5372aa6b4236fce..7b63c86b6192140728790bc58e03872c5b8bf0c2 100644 (file)
@@ -60,13 +60,14 @@ typedef void wxWindow;
 #endif // defined(_WIN32) 
 
 
+#include <string>
 
 
 namespace crea
 {
   //==================================================================
   /// Conversion std::string to wxString 
-  inline wxString std2wx(const std::string& s){
+  inline wxString std2wx(const std::string& s) {
     wxString wx;
     const char* my_string=s.c_str();
     wxMBConvUTF8 *wxconv= new wxMBConvUTF8();