00001 /* 00002 * This program is free software; you can redistribute it and/or modify 00003 * it under the terms of the GNU General Public License as published by 00004 * the Free Software Foundation; either version 3 of the License, or 00005 * (at your option) any later version. 00006 * 00007 * Written (W) 1999-2009 Soeren Sonnenburg 00008 * Copyright (C) 1999-2009 Fraunhofer Institute FIRST and Max-Planck-Society 00009 */ 00010 00011 #include "base/Version.h" 00012 #include "lib/versionstring.h" 00013 00014 00015 const int32_t CVersion::version_revision = VERSION_REVISION; 00016 const int32_t CVersion::version_year = VERSION_YEAR; 00017 const int32_t CVersion::version_month = VERSION_MONTH; 00018 const int32_t CVersion::version_day = VERSION_DAY; 00019 const int32_t CVersion::version_hour = VERSION_HOUR; 00020 const int32_t CVersion::version_minute = VERSION_MINUTE; 00021 const char CVersion::version_extra[128] = VERSION_EXTRA; 00022 const char CVersion::version_release[128] = VERSION_RELEASE; 00023 00024 CVersion::CVersion() : refcount(0) 00025 { 00026 } 00027 00028 00029 CVersion::~CVersion() 00030 { 00031 }