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 0
21 #define RCF_VERSION_MINOR_MINOR 0
22 #define RCF_VERSION_BUILD 2682
23 
24 #define CAT_HELPER_1(s) #s
25 #define CAT_HELPER_2(s) CAT_HELPER_1(s)
26 
27 #define RCF_VERSION_STR_BASE \
28  CAT_HELPER_2(RCF_VERSION_MAJOR) "." \
29  CAT_HELPER_2(RCF_VERSION_MINOR) "." \
30  CAT_HELPER_2(RCF_VERSION_MINOR_MINOR) "." \
31  CAT_HELPER_2(RCF_VERSION_BUILD)
32 
33 #ifdef NDEBUG
34 #define RCF_VERSION_STR RCF_VERSION_STR_BASE
35 #else
36 #define RCF_VERSION_STR RCF_VERSION_STR_BASE " Debug"
37 #endif