00001 /* 00002 * ==================================================================== 00003 * Copyright (c) 2002-2006 The RapidSvn Group. All rights reserved. 00004 * 00005 * This library is free software; you can redistribute it and/or 00006 * modify it under the terms of the GNU Lesser General Public 00007 * License as published by the Free Software Foundation; either 00008 * version 2.1 of the License, or (at your option) any later version. 00009 * 00010 * This library is distributed in the hope that it will be useful, 00011 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00012 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00013 * Lesser General Public License for more details. 00014 * 00015 * You should have received a copy of the GNU Lesser General Public 00016 * License along with this library (in the file LGPL.txt); if not, 00017 * write to the Free Software Foundation, Inc., 51 Franklin St, 00018 * Fifth Floor, Boston, MA 02110-1301 USA 00019 * 00020 * This software consists of voluntary contributions made by many 00021 * individuals. For exact contribution history, see the revision 00022 * history and logs, available at http://rapidsvn.tigris.org/. 00023 * ==================================================================== 00024 */ 00025 00026 #ifndef _SVNCPP_DATETIME_HPP_ 00027 #define _SVNCPP_DATETIME_HPP_ 00028 00029 // subversion api 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 * local variables: 00114 * eval: (load-file "../../rapidsvn-dev.el") 00115 * end: 00116 */