On Friday, May 18, the normal maintenance window (17:00 Pacific time) will be extended for data center maintenance until 23:00 Pacific. No extended down-time is planned, but brief delays and interruptions are possible throughout the period.
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 #ifndef _SVNCPP_DATETIME_HPP_
00026 #define _SVNCPP_DATETIME_HPP_
00027
00028
00029 #include "svn_types.h"
00030
00031
00032 namespace svn
00033 {
00039 class DateTime
00040 {
00041 private:
00042 apr_time_t m_time;
00043
00044 public:
00045
00049 DateTime();
00050
00056 DateTime(const apr_time_t time);
00057
00063 DateTime(const DateTime & dateTime);
00064
00068 const DateTime &
00069 operator =(const DateTime & dateTime);
00070
00074 bool
00075 operator ==(const DateTime & dateTime);
00076
00080 bool
00081 operator !=(const DateTime & dateTime);
00082
00086 bool
00087 IsValid() const;
00088
00092 apr_time_t
00093 GetAPRTimeT() const;
00094
00105 bool
00106 SetRFC822Date(const char* date);
00107 };
00108 }
00109
00110 #endif
00111
00112
00113
00114
00115
Generated on Tue Oct 6 19:45:57 2009 for SvnCpp by
1.5.8