X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/57493f9f852d91a5750b4a68053a465f421e12be..4714ef79af518f74214126559ef48607acf89180:/include/wx/variant.h diff --git a/include/wx/variant.h b/include/wx/variant.h index 58f4bf2380..ac685e092c 100644 --- a/include/wx/variant.h +++ b/include/wx/variant.h @@ -54,9 +54,13 @@ public: // Copy to data virtual void Copy(wxVariantData& data) = 0; virtual bool Eq(wxVariantData& data) const = 0; +#if wxUSE_STD_IOSTREAM virtual bool Write(ostream& str) const = 0; +#endif virtual bool Write(wxString& str) const = 0; +#if wxUSE_STD_IOSTREAM virtual bool Read(istream& str) = 0; +#endif virtual bool Read(wxString& str) = 0; // What type is it? Return a string name. virtual wxString GetType() const = 0; @@ -84,7 +88,7 @@ public: #endif wxVariant(char val, const wxString& name = g_szNul); wxVariant(const wxString& val, const wxString& name = g_szNul); - wxVariant(const char* val, const wxString& name = g_szNul); // Necessary or VC++ assumes bool! + wxVariant(const wxChar* val, const wxString& name = g_szNul); // Necessary or VC++ assumes bool! wxVariant(const wxStringList& val, const wxString& name = g_szNul); wxVariant(const wxList& val, const wxString& name = g_szNul); // List of variants #if wxUSE_TIMEDATE @@ -124,7 +128,7 @@ public: bool operator== (const wxString& value) const; bool operator!= (const wxString& value) const; void operator= (const wxString& value) ; - void operator= (const char* value) ; // Necessary or VC++ assumes bool! + void operator= (const wxChar* value) ; // Necessary or VC++ assumes bool! bool operator== (const wxStringList& value) const; bool operator!= (const wxStringList& value) const; void operator= (const wxStringList& value) ;