-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathversion.h
More file actions
23 lines (17 loc) · 743 Bytes
/
version.h
File metadata and controls
23 lines (17 loc) · 743 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#pragma once
#define CUFFLINK_VERSION 100
/*! \def CUFFLINK_MAJOR_VERSION
* \brief The preprocessor macro \p CUFFLINK_MAJOR_VERSION encodes the
* major version number of the Cufflink library.
*/
#define CUFFLINK_MAJOR_VERSION (CUFFLINK_VERSION / 100000)
/*! \def CUFFLINK_MINOR_VERSION
* \brief The preprocessor macro \p CUFFLINK_MINOR_VERSION encodes the
* minor version number of the CUFFLINK library.
*/
#define CUFFLINK_MINOR_VERSION (CUFFLINK_VERSION / 100 % 1000)
/*! \def CUFFLINK_SUBMINOR_VERSION
* \brief The preprocessor macro \p CUFFLINK_SUBMINOR_VERSION encodes the
* sub-minor version number of the CUFFLINK library.
*/
#define CUFFLINK_SUBMINOR_VERSION (CUFFLINK_VERSION % 100)