C++InterfacetoTauola
src/tauolaCInterfaces/Version.h
1 /**
2  * This file contains tauola version definitions
3  *
4  * @date January 21 2020
5  */
6 #ifndef TAUOLA_VERSION_H
7 #define TAUOLA_VERSION_H
8 
9 #include <string>
10 
11 /** @brief TAUOLA version string */
12 #define TAUOLA_VERSION "1.1.9"
13 
14 /** @brief TAUOLA version code */
15 #define TAUOLA_VERSION_CODE 10109
16 
17 namespace Tauolapp {
18 
19 /* @brief Get TAUOLA library version string */
20 inline std::string version() {
21  return TAUOLA_VERSION;
22 }
23 
24 } // namespace Tauolapp
25 
26 #endif