2011-05-26 13:59:21 +00:00
|
|
|
#ifndef VERSION_H
|
|
|
|
#define VERSION_H
|
|
|
|
|
|
|
|
namespace AutoVersion{
|
|
|
|
|
|
|
|
//Date Version Types
|
2011-06-14 19:46:07 +00:00
|
|
|
static const char _DATE[] = "15";
|
2011-06-14 06:15:57 +00:00
|
|
|
static const char _MONTH[] = "06";
|
|
|
|
static const char _YEAR[] = "2011";
|
|
|
|
static const char _UBUNTU_VERSION_STYLE[] = "11.06";
|
2011-05-26 13:59:21 +00:00
|
|
|
|
|
|
|
//Software Status
|
2011-06-14 06:15:57 +00:00
|
|
|
static const char _STATUS[] = "Alpha";
|
|
|
|
static const char _STATUS_SHORT[] = "a";
|
2011-05-26 13:59:21 +00:00
|
|
|
|
|
|
|
//Standard Version Type
|
2011-06-14 06:15:57 +00:00
|
|
|
static const long _MAJOR = 0;
|
|
|
|
static const long _MINOR = 7;
|
2011-06-15 11:44:02 +00:00
|
|
|
static const long _BUILD = 6060;
|
|
|
|
static const long _REVISION = 16387;
|
2011-05-26 13:59:21 +00:00
|
|
|
|
|
|
|
//Miscellaneous Version Types
|
2011-06-15 11:44:02 +00:00
|
|
|
static const long _BUILDS_COUNT = 6665;
|
|
|
|
#define _RC_FILEVERSION 0,7,6060,16387
|
|
|
|
#define _RC_FILEVERSION_STRING "0, 7, 6060, 16387\0"
|
|
|
|
static const char _FULLVERSION_STRING[] = "0.7.6060.16387";
|
2011-05-26 13:59:21 +00:00
|
|
|
|
|
|
|
//These values are to keep track of your versioning state, don't modify them.
|
2011-06-14 06:15:57 +00:00
|
|
|
static const long _BUILD_HISTORY = 0;
|
2011-05-26 13:59:21 +00:00
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
#endif //VERSION_H
|