Remote Call Framework 3.3
BuildVersion.hpp
1
2
//******************************************************************************
3
// RCF - Remote Call Framework
4
//
5
// Copyright (c) 2005 - 2022, Delta V Software. All rights reserved.
6
// https://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 under GPL terms.
12
//
13
// Version: 3.3
14
// Contact: support <at> deltavsoft.com
15
//
16
//******************************************************************************
17
18
#define RCF_VERSION_MAJOR 3
19
#define RCF_VERSION_MINOR 3
20
21
#define CAT_HELPER_1(s) #s
22
#define CAT_HELPER_2(s) CAT_HELPER_1(s)
23
24
#define RCF_VERSION_STR_BASE \
25
CAT_HELPER_2(RCF_VERSION_MAJOR) "." \
26
CAT_HELPER_2(RCF_VERSION_MINOR)
27
28
#ifdef NDEBUG
29
#define RCF_VERSION_STR RCF_VERSION_STR_BASE
30
#else
31
#define RCF_VERSION_STR RCF_VERSION_STR_BASE " Debug"
32
#endif
Copyright (C)
Delta V Software
2022