The Tigris site will receive a major upgrade the evening of Monday, December 1, beginning at 8:30 pm PST. Downtime is projected to be about ten hours.
Further details in the announcement
datetime.hpp
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026 #ifndef _SVNCPP_DATETIME_HPP_
00027 #define _SVNCPP_DATETIME_HPP_
00028
00029
00030 #include "svn_types.h"
00031
00032
00033 namespace svn
00034 {
00040 class DateTime
00041 {
00042 private:
00043 apr_time_t m_time;
00044
00045 public:
00046
00050 DateTime ();
00051
00057 DateTime (const apr_time_t time);
00058
00064 DateTime (const DateTime & dateTime);
00065
00069 const DateTime &
00070 operator =(const DateTime & dateTime);
00071
00075 const bool
00076 operator ==(const DateTime & dateTime);
00077
00081 const bool
00082 operator !=(const DateTime & dateTime);
00083
00087 const bool
00088 IsValid () const;
00089
00093 const apr_time_t
00094 GetAPRTimeT () const;
00095
00106 const bool
00107 SetRFC822Date (const char* date);
00108 };
00109 }
00110
00111 #endif
00112
00113
00114
00115
00116
Generated on Tue Mar 4 00:40:36 2008 for SvnCpp by
1.5.3