-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
668e912
commit a9f181d
Showing
1 changed file
with
24 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
#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 1 | ||
/*! @} */ | ||
|
||
/*! \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) | ||
|
||
#endif |