RICOH Camera USB SDK for C++  1.1.0
RICOH Camera USB SDK for C++
version.hpp
Go to the documentation of this file.
1 // Copyright (c) 2017 Ricoh Company, Ltd. All Rights Reserved.
2 #ifndef RICOH_CAMERA_SDK_VERSION_HPP_
3 #define RICOH_CAMERA_SDK_VERSION_HPP_
4 
5 #define RCSDK_VERSION_MAJOR 1
6 #define RCSDK_VERSION_MINOR 1
7 #define RCSDK_VERSION_PATCH 0
8 
9 #define RCSDK_VERSION_SUFFIX ""
10 
11 #define RCSDK_STR_EXP(x) #x
12 #define RCSDK_STR(x) RCSDK_STR_EXP(x)
13 
14 #define RCSDK_VERSION \
15  RCSDK_STR(RCSDK_VERSION_MAJOR) \
16  "." RCSDK_STR(RCSDK_VERSION_MINOR) \
17  "." RCSDK_STR(RCSDK_VERSION_PATCH) \
18  RCSDK_VERSION_SUFFIX
19 
20 #endif // RICOH_CAMERA_SDK_VERSION_HPP_