Very Simple Graphic Library
version.h
00001 #ifndef VERSION_H
00002 #define VERSION_H
00003 
00004 namespace AutoVersion{
00005         
00006         //Date Version Types
00007         static const char DATE[] = "24";
00008         static const char MONTH[] = "05";
00009         static const char YEAR[] = "2012";
00010         static const double UBUNTU_VERSION_STYLE = 12.05;
00011         
00012         //Software Status
00013         static const char STATUS[] = "Alpha";
00014         static const char STATUS_SHORT[] = "a";
00015         
00016         //Standard Version Type
00017         static const long MAJOR = 1;
00018         static const long MINOR = 0;
00019         static const long BUILD = 2;
00020         static const long REVISION = 8;
00021         
00022         //Miscellaneous Version Types
00023         static const long BUILDS_COUNT = 17;
00024         #define RC_FILEVERSION 1,0,2,8
00025         #define RC_FILEVERSION_STRING "1, 0, 2, 8\0"
00026         static const char FULLVERSION_STRING[] = "1.0.2.8";
00027         
00028         //These values are to keep track of your versioning state, don't modify them.
00029         static const long BUILD_HISTORY = 2;
00030         
00031 
00032 }
00033 #endif //VERSION_h