]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/string.h
tidied up patch 583937 (wxClassInfo dtor)
[wxWidgets.git] / include / wx / string.h
index 7f4245d2aadaf1b3e86eadd9927e229542928a9b..b285cdefb63c1f6d938c32399b5b97cd98a5c809 100644 (file)
@@ -480,6 +480,18 @@ public:
     // identical to c_str()
     const wxChar* GetData() const { return m_pchData; }
 
+    // conversion to plain ascii: this is usefull for
+    // converting numbers or strings which are certain
+    // not to contain special chars (typically system
+    // functions, X atoms, environment variables etc.)
+#if wxUSE_UNICODE
+    static wxString FromAscii( char *ascii );
+    const wxCharBuffer ToAscii() const;
+#else
+    static wxString FromAscii( char *ascii ) { return wxString( ascii ); }
+    const char *ToAscii() const { return m_pchData; }
+#endif
+
     // conversions with (possible) format convertions: have to return a
     // buffer with temporary data
     //