]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/date.h
wxListCtrl will receive EVT_CHAR() events now
[wxWidgets.git] / include / wx / date.h
index d21a53eb00abb978036d764e0efe3d6d4927b19d..fae4f9ec5084037821fd4bc280f04c6af15ab744 100644 (file)
 #include "wx/object.h"
 #include "wx/string.h"
 
-#if USE_TIMEDATE
+#if wxUSE_TIMEDATE
+// These lines necessary to stop VC++ 6 being confused about namespaces
+class WXDLLEXPORT wxDate;
+bool WXDLLEXPORT operator<(const wxDate &dt1, const wxDate &dt2);
+bool WXDLLEXPORT operator<(const wxDate &dt1, const wxDate &dt2);
+bool WXDLLEXPORT operator <= (const wxDate &dt1, const wxDate &dt2);
+bool WXDLLEXPORT operator >  (const wxDate &dt1, const wxDate &dt2);
+bool WXDLLEXPORT operator >= (const wxDate &dt1, const wxDate &dt2);
+bool WXDLLEXPORT operator == (const wxDate &dt1, const wxDate &dt2);
+bool WXDLLEXPORT operator != (const wxDate &dt1, const wxDate &dt2);
 
 enum wxdate_format_type {wxMDY, wxDAY, wxMONTH, wxFULL, wxEUROPEAN};
 
@@ -52,7 +61,10 @@ class WXDLLEXPORT wxDate: public wxObject
   wxDate (const wxString& dat);
   wxDate (const wxDate &dt);
 
+#ifndef __SALFORDC__
   operator wxString  (void);
+#endif
+
   void operator =   (const wxDate& date);
   void operator =   (const wxString& date);
 
@@ -72,14 +84,14 @@ class WXDLLEXPORT wxDate: public wxObject
   wxDate &operator -- ();     // Prefix decrement
   wxDate &operator -- (int);  // Postfix decrement
 
-  friend bool operator <  (const wxDate &dt1, const wxDate &dt2);
-  friend bool operator <= (const wxDate &dt1, const wxDate &dt2);
-  friend bool operator >  (const wxDate &dt1, const wxDate &dt2);
-  friend bool operator >= (const wxDate &dt1, const wxDate &dt2);
-  friend bool operator == (const wxDate &dt1, const wxDate &dt2);
-  friend bool operator != (const wxDate &dt1, const wxDate &dt2);
+  friend bool WXDLLEXPORT operator <  (const wxDate &dt1, const wxDate &dt2);
+  friend bool WXDLLEXPORT operator <= (const wxDate &dt1, const wxDate &dt2);
+  friend bool WXDLLEXPORT operator >  (const wxDate &dt1, const wxDate &dt2);
+  friend bool WXDLLEXPORT operator >= (const wxDate &dt1, const wxDate &dt2);
+  friend bool WXDLLEXPORT operator == (const wxDate &dt1, const wxDate &dt2);
+  friend bool WXDLLEXPORT operator != (const wxDate &dt1, const wxDate &dt2);
 
-  friend ostream &operator << (ostream &os, const wxDate &dt);
+  friend ostream WXDLLEXPORT & operator << (ostream &os, const wxDate &dt);
 
   wxString FormatDate     (int type=-1) const;
   void  SetFormat (int format);