Skip to content

Commit

Permalink
No commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
brechtsanders committed Nov 14, 2017
1 parent 668e912 commit a9f181d
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions adreports_version.h
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

0 comments on commit a9f181d

Please sign in to comment.