]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/longlong.cpp
wxLongLong to wxString operators.
[wxWidgets.git] / src / common / longlong.cpp
index 6babb4eef75809fe2e801f874ba1120176fcc5a0..63db358fff4781960a0aa852816d1e80a2026923 100644 (file)
@@ -1162,4 +1162,14 @@ wxSTD ostream& operator<< (wxSTD ostream& o, const wxULongLong& ll)
 
 #endif // wxUSE_STD_IOSTREAM
 
+wxString& operator<< (wxString& s, const wxLongLong& ll)
+{
+    return s << ll.ToString();
+}
+
+wxString& operator<< (wxString& s, const wxULongLong& ll)
+{
+    return s << ll.ToString();
+}
+
 #endif // wxUSE_LONGLONG