-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathadreports_version.h
27 lines (22 loc) · 956 Bytes
/
adreports_version.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#ifndef INCLUDED_ADREPORTS_VERSION_H
#define INCLUDED_ADREPORTS_VERSION_H
/*! \brief version number constants
* \name ADREPORTS_VERSION_*
* \{
*/
/*! \brief major version number */
#define ADREPORTS_VERSION_MAJOR 1
/*! \brief minor version number */
#define ADREPORTS_VERSION_MINOR 4
/*! \brief micro version number */
#define ADREPORTS_VERSION_MICRO 9
/*! @} */
/*! \cond PRIVATE */
#define ADREPORTS_VERSION_STRINGIZE_(major, minor, micro) #major"."#minor"."#micro
#define ADREPORTS_VERSION_STRINGIZE(major, minor, micro) ADREPORTS_VERSION_STRINGIZE_(major, minor, micro)
/*! \endcond */
/*! \brief string with dotted version number \hideinitializer */
#define ADREPORTS_VERSION_STRING ADREPORTS_VERSION_STRINGIZE(ADREPORTS_VERSION_MAJOR, ADREPORTS_VERSION_MINOR, ADREPORTS_VERSION_MICRO)
/*! \brief string with information about author \hideinitializer */
#define ADREPORTS_CREDITS "Brecht Sanders 2011-2023"
#endif