00001 // /// // C++ Cross Platform 00002 // ///// //// 00003 // /// XXX XXX /// /////////// ///////// /// /// 00004 // /// XXX XXX /// /// /// /// /// /// 00005 // /// XXX /// ///////// /// // ////// 00006 // /// XXX XXX /// /// /// /// /// /// 00007 // //// XXX XXX //// //////////// ////////// /// /// 00008 // //// //// 00009 // //// M O B O T I X //////////////////////////////////////////////// 00010 // //// Security Vision Systems ////////////////////////////////////////////// 00011 // 00012 // $Author: khe_admin $ 00013 // $LastChangedBy: khe_admin $ 00014 // $LastChangedDate: 2007-06-29 15:34:53 +0200 (Fri, 29 Jun 2007) $ 00015 // $HeadURL: http://svn.mobotix.net/svn/mxsdk/src/mxm/trunk/include/mxm/core/mxmDate.h $ 00016 // 00018 // 00019 // MOBOTIX MxPEG SDK 00020 // 00021 // This file belongs to the C++ library released as part of the MxPEG SDK. 00022 // 00023 // This software is licenced under the BSD licence, 00024 // http://www.opensource.org/licenses/bsd-license.php 00025 // 00026 // Copyright (c) 2005 - 2007, MOBOTIX AG 00027 // All rights reserved. 00028 // 00029 // Redistribution and use in source and binary forms, with or without 00030 // modification, are permitted provided that the following conditions are 00031 // met: 00032 // 00033 // - Redistributions of source code must retain the above copyright 00034 // notice, this list of conditions and the following disclaimer. 00035 // 00036 // - Redistributions in binary form must reproduce the above copyright 00037 // notice, this list of conditions and the following disclaimer in the 00038 // documentation and/or other materials provided with the distribution. 00039 // 00040 // - Neither the name of MOBOTIX AG nor the names of its contributors may 00041 // be used to endorse or promote products derived from this software 00042 // without specific prior written permission. 00043 // 00044 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 00045 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 00046 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 00047 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 00048 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 00049 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 00050 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 00051 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 00052 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 00053 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 00054 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 00055 // 00057 00058 00059 00060 #ifndef __MXM_DATE_H__ 00061 #define __MXM_DATE_H__ 00062 00063 00064 00065 #include <mxm/core/mxmObject.h> 00066 #include <mxm/core/mxmString.h> 00067 00068 00070 00075 class MXM_CORE_API mxmDate : public mxmObject { 00076 00077 public: 00078 enum EDateFormat { 00079 eEuropean2, 00080 eEuropean4, 00081 eBritish2, 00082 eBritish4, 00083 eEuropean2Time, 00084 eEuropean4Time, 00085 eBritish2Time, 00086 eBritish4Time 00087 }; 00088 00092 mxmDate(); 00095 mxmDate(int year, int month, int day); 00098 mxmDate(const mxmDate& date); 00101 ~mxmDate(); 00104 int year() const; 00107 int month() const; 00110 int day() const; 00115 bool setDate(int year, int month, int day); 00118 bool isLeapYear() const; 00121 mxmString toString(EDateFormat format = eEuropean4) const; 00124 mxmDate& operator=(const mxmDate& date); 00127 static mxmDate currentDate(); 00128 00130 /* compare dates. 00131 * NOTE: at this time, only the date part is compared, 00132 * not the time part. 00133 */ 00134 bool operator==(const mxmDate& date) const; 00135 bool operator!=(const mxmDate& date) const; 00136 bool operator<=(const mxmDate& date) const; 00137 bool operator>=(const mxmDate& date) const; 00138 bool operator<(const mxmDate& date) const; 00139 bool operator>(const mxmDate& date) const; 00141 00143 void addDays(int days); 00146 void addMonths(int months); 00149 void addYears(int years); 00150 00151 private: 00152 int m_year; 00153 int m_month; 00154 int m_day; 00155 int m_hour; 00156 int m_minute; 00157 int m_second; 00158 void *StableABIDataExtension; 00159 }; 00160 00161 00162 00163 #endif // __MXM_DATE_H__