Version.cpp

Go to the documentation of this file.
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 using namespace shogun;
00015 
00016 namespace shogun
00017 {
00018 const int32_t Version::version_revision = VERSION_REVISION;
00019 const int32_t Version::version_year = VERSION_YEAR;
00020 const int32_t Version::version_month = VERSION_MONTH;
00021 const int32_t Version::version_day = VERSION_DAY;
00022 const int32_t Version::version_hour = VERSION_HOUR;
00023 const int32_t Version::version_minute = VERSION_MINUTE;
00024 const char Version::version_extra[128] = VERSION_EXTRA;
00025 const char Version::version_release[128] = VERSION_RELEASE;
00026 }
00027 
00028 Version::Version() : refcount(0)
00029 {
00030 }
00031 
00032 
00033 Version::~Version()
00034 {
00035 }
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines

SHOGUN Machine Learning Toolbox - Documentation