]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/date.h
Added variant.h/cpp; changed variable names in object.h; added some
[wxWidgets.git] / include / wx / date.h
index 2347dad44541b2ca033ed4d9a1b3d77ba6d2b3d4..d21a53eb00abb978036d764e0efe3d6d4927b19d 100644 (file)
@@ -10,8 +10,8 @@
 // Licence:    wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
-#ifndef __WXDATEH__
-#define __WXDATEH__
+#ifndef _WX_DATE_H_
+#define _WX_DATE_H_
 
 #ifdef __GNUG__
 #pragma interface "date.h"
@@ -47,8 +47,8 @@ class WXDLLEXPORT wxDate: public wxObject
 
  public:
   wxDate ();
-  wxDate (const long j);
-  wxDate (const int m, const int d, const int y);
+  wxDate (long j);
+  wxDate (int m, int d, int y);
   wxDate (const wxString& dat);
   wxDate (const wxDate &dt);
 
@@ -56,16 +56,16 @@ class WXDLLEXPORT wxDate: public wxObject
   void operator =   (const wxDate& date);
   void operator =   (const wxString& date);
 
-  wxDate operator +  (const long i);
-  wxDate operator +  (const int  i);
+  wxDate operator +  (long i);
+  wxDate operator +  (int  i);
 
-  wxDate operator -  (const long i);
-  wxDate operator -  (const int  i);
+  wxDate operator -  (long i);
+  wxDate operator -  (int  i);
 
   long operator -  (const wxDate &dt);
 
-  wxDate &operator += (const long i);
-  wxDate &operator -= (const long i);
+  wxDate &operator += (long i);
+  wxDate &operator -= (long i);
 
   wxDate &operator ++ ();     // Prefix increment
   wxDate &operator ++ (int);  // Postfix increment
@@ -81,9 +81,9 @@ class WXDLLEXPORT wxDate: public wxObject
 
   friend ostream &operator << (ostream &os, const wxDate &dt);
 
-  wxString FormatDate     (const int type=-1) const;
-  void  SetFormat (const int format);
-  int   SetOption (const int option, const bool enable=TRUE);
+  wxString FormatDate     (int type=-1) const;
+  void  SetFormat (int format);
+  int   SetOption (int option, bool enable=TRUE);
 
   long  GetJulianDate() const;  // returns julian date
   int   GetDayOfYear()  const;  // returns relative date since Jan. 1
@@ -123,9 +123,9 @@ class WXDLLEXPORT wxDate: public wxObject
 
   bool IsBetween(const wxDate& first, const wxDate& second) const;
 
-  wxDate Previous(const int dayOfWeek) const;
+  wxDate Previous(int dayOfWeek) const;
 };
 
 #endif
 #endif
-    // __WXDATEH__
+    // _WX_DATE_H_