From: Sylvain Bougnoux Date: Fri, 29 Oct 1999 15:11:25 +0000 (+0000) Subject: Add operator << (ostream&, const wxString&) X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/825ba8f0deb561e2e2851eed9294a66d88b3075d Add operator << (ostream&, const wxString&) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@4253 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/string.h b/include/wx/string.h index dbbb42cf8f..cc74023016 100644 --- a/include/wx/string.h +++ b/include/wx/string.h @@ -1037,7 +1037,8 @@ inline wxString WXDLLEXPORT operator+(const wxCharBuffer& buf, const wxString& s #include "wx/ioswrap.h" -WXDLLEXPORT istream& operator>>(istream& is, wxString& str); +WXDLLEXPORT istream& operator>>(istream&, wxString&); +WXDLLEXPORT ostream& operator<<(ostream&, const wxString&); #endif // wxSTD_STRING_COMPATIBILITY diff --git a/src/common/string.cpp b/src/common/string.cpp index 423bb6a7e3..32350af033 100644 --- a/src/common/string.cpp +++ b/src/common/string.cpp @@ -176,6 +176,12 @@ istream& operator>>(istream& is, wxString& WXUNUSED(str)) return is; } +ostream& operator<<(ostream& os, const wxString& str) +{ + os << str.c_str(); + return os; +} + #endif //std::string compatibility // ----------------------------------------------------------------------------