Remote Call Framework 3.0
BuildVersion.hpp
1 
2 //******************************************************************************
3 // RCF - Remote Call Framework
4 //
5 // Copyright (c) 2005 - 2018, 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: 3.0
15 // Contact: support <at> deltavsoft.com
16 //
17 //******************************************************************************
18 
19 #define RCF_VERSION_MAJOR 3
20 #define RCF_VERSION_MINOR 0
21 
22 #define CAT_HELPER_1(s) #s
23 #define CAT_HELPER_2(s) CAT_HELPER_1(s)
24 
25 #define RCF_VERSION_STR_BASE \
26  CAT_HELPER_2(RCF_VERSION_MAJOR) "." \
27  CAT_HELPER_2(RCF_VERSION_MINOR)
28 
29 #ifdef NDEBUG
30 #define RCF_VERSION_STR RCF_VERSION_STR_BASE
31 #else
32 #define RCF_VERSION_STR RCF_VERSION_STR_BASE " Debug"
33 #endif