StarTrekV3_Linux  Version3
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Friends Macros Pages
version.h
Go to the documentation of this file.
1 #ifndef VERSION_H
2 #define VERSION_H
3 
4 namespace AutoVersion{
5 
6  //Date Version Types
7  static const char DATE[] = "23";
8  static const char MONTH[] = "05";
9  static const char YEAR[] = "2016";
10  static const char UBUNTU_VERSION_STYLE[] = "16.05";
11 
12  //Software Status
13  static const char STATUS[] = "Alpha";
14  static const char STATUS_SHORT[] = "a";
15 
16  //Standard Version Type
17  static const long MAJOR = 3;
18  static const long MINOR = 0;
19  static const long BUILD = 5;
20  static const long REVISION = 0;
21 
22  //Miscellaneous Version Types
23  static const long BUILDS_COUNT = 1;
24  #define RC_FILEVERSION 3,0,5,0
25  #define RC_FILEVERSION_STRING "3, 0, 5, 0\0"
26  static const char FULLVERSION_STRING [] = "3.0.5.0";
27 
28  //These values are to keep track of your versioning state, don't modify them.
29  static const long BUILD_HISTORY = 0;
30 
31 
32 }
33 #endif //VERSION_H