Feathercoin  0.5.0
P2P Digital Currency
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros
clientversion.h
Go to the documentation of this file.
1 #ifndef CLIENTVERSION_H
2 #define CLIENTVERSION_H
3 
4 //
5 // client versioning and copyright year
6 //
7 
8 // These need to be macros, as version.cpp's and bitcoin-qt.rc's voodoo requires it
9 #define CLIENT_VERSION_MAJOR 0
10 #define CLIENT_VERSION_MINOR 8
11 #define CLIENT_VERSION_REVISION 6
12 #define CLIENT_VERSION_BUILD 2
13 
14 // Set to true for release, false for prerelease or test build
15 #define CLIENT_VERSION_IS_RELEASE true
16 
17 // Copyright year (2009-this)
18 // Todo: update this when changing our copyright comments in the source
19 #define COPYRIGHT_YEAR 2014
20 
21 // Converts the parameter X to a string after macro replacement on X has been performed.
22 // Don't merge these into one macro!
23 #define STRINGIZE(X) DO_STRINGIZE(X)
24 #define DO_STRINGIZE(X) #X
25 
26 #endif // CLIENTVERSION_H