RCFProto
 All Classes Functions Typedefs
BuildVersion.hpp
1 
2 //******************************************************************************
3 // RCF - Remote Call Framework
4 //
5 // Copyright (c) 2005 - 2013, Delta V Software. All rights reserved.
6 // http://www.deltavsoft.com
7 //
8 // RCF is distributed under dual licenses - closed source or GPL.
9 // Consult your particular license for conditions of use.
10 //
11 // If you have not purchased a commercial license, you are using RCF
12 // under GPL terms.
13 //
14 // Version: 2.0
15 // Contact: support <at> deltavsoft.com
16 //
17 //******************************************************************************
18 
19 #define RCF_VERSION_MAJOR 2
20 #define RCF_VERSION_MINOR 2
21 #define RCF_VERSION_MINOR_MINOR 0
22 #define RCF_VERSION_BUILD 0
23 #define CAT_HELPER_1(s) #s
24 #define CAT_HELPER_2(s) CAT_HELPER_1(s)
25 
26 #define RCF_VERSION_STR_BASE \
27  CAT_HELPER_2(RCF_VERSION_MAJOR) "." \
28  CAT_HELPER_2(RCF_VERSION_MINOR) "." \
29  CAT_HELPER_2(RCF_VERSION_MINOR_MINOR) "." \
30  CAT_HELPER_2(RCF_VERSION_BUILD)
31 
32 #ifdef NDEBUG
33 #define RCF_VERSION_STR RCF_VERSION_STR_BASE
34 #else
35 #define RCF_VERSION_STR RCF_VERSION_STR_BASE " Debug"
36 #endif