include/Photos/Version.h
1 /**
2  * This file contains tauola version definitions
3  *
4  * @date January 24 2020
5  */
6 #ifndef PHOTOS_VERSION_H
7 #define PHOTOS_VERSION_H
8 
9 #include <string>
10 
11 /** @brief PHOTOS version string */
12 #define PHOTOS_VERSION "3.64"
13 
14 /** @brief PHOTOS version code */
15 #define PHOTOS_VERSION_CODE 364
16 
17 namespace Photospp {
18 
19 /* @brief Get PHOTOS library version string */
20 inline std::string version() {
21  return PHOTOS_VERSION;
22 }
23 
24 } // namespace Photospp
25 
26 #endif