X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/a0a302dcba6d7f6828f221f7341ee8a8cbcd8e96..bbfa03228a5fc1f23565cf59ee29629bc4336d65:/include/wx/variant.h?ds=sidebyside diff --git a/include/wx/variant.h b/include/wx/variant.h index 157259cc5f..ff5797ec1a 100644 --- a/include/wx/variant.h +++ b/include/wx/variant.h @@ -6,7 +6,7 @@ // Created: 10/09/98 // RCS-ID: $Id$ // Copyright: (c) -// Licence: wxWindows licence +// Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// #ifndef _WX_VARIANT_H_ @@ -22,18 +22,11 @@ #include "wx/list.h" #if wxUSE_TIMEDATE -#include "wx/time.h" -#include "wx/date.h" -#endif + #include "wx/time.h" + #include "wx/date.h" +#endif // time/date -#if wxUSE_IOSTREAMH -#include -#else -#include -# ifdef _MSC_VER - using namespace std; -# endif -#endif +#include "wx/ioswrap.h" /* * wxVariantData stores the actual data in a wxVariant object, @@ -61,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; @@ -86,10 +83,12 @@ public: wxVariant(); wxVariant(double val, const wxString& name = wxEmptyString); wxVariant(long val, const wxString& name = wxEmptyString); +#ifdef HAVE_BOOL wxVariant(bool val, const wxString& name = wxEmptyString); +#endif wxVariant(char val, const wxString& name = wxEmptyString); wxVariant(const wxString& val, const wxString& name = wxEmptyString); - wxVariant(const char* val, const wxString& name = wxEmptyString); // Necessary or VC++ assumes bool! + wxVariant(const wxChar* val, const wxString& name = wxEmptyString); // Necessary or VC++ assumes bool! wxVariant(const wxStringList& val, const wxString& name = wxEmptyString); wxVariant(const wxList& val, const wxString& name = wxEmptyString); // List of variants #if wxUSE_TIMEDATE @@ -121,13 +120,15 @@ public: bool operator== (char value) const; bool operator!= (char value) const; void operator= (char value) ; +#ifdef HAVE_BOOL bool operator== (bool value) const; bool operator!= (bool value) const; void operator= (bool value) ; +#endif 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) ; @@ -242,7 +243,7 @@ protected: wxString m_name; }; -extern wxVariant wxNullVariant; +extern wxVariant WXDLLEXPORT wxNullVariant; #endif // _WX_VARIANT_H_