Get rid of fCompressedPubKey attribute.
[novacoin.git] / src / clientversion.h
1 #ifndef CLIENTVERSION_H
2 #define CLIENTVERSION_H
3
4 //
5 // client versioning
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       7
11 #define CLIENT_VERSION_REVISION    6
12 #define CLIENT_VERSION_BUILD       7
13
14 // Converts the parameter X to a string after macro replacement on X has been performed.
15 // Don't merge these into one macro!
16 #define STRINGIZE(X) DO_STRINGIZE(X)
17 #define DO_STRINGIZE(X) #X
18
19 #endif // CLIENTVERSION_H