1 #ifndef _ots_Console_version_h_
2 #define _ots_Console_version_h_
4 #include "config/PackageInfo.h"
6 #define MYPACKAGE_VERSION_MAJOR 3
7 #define MYPACKAGE_VERSION_MINOR 0
8 #define MYPACKAGE_VERSION_PATCH 0
9 #undef MYPACKAGE_PREVIOUS_VERSIONS
11 #define MYPACKAGE_VERSION_CODE \
12 PACKAGE_VERSION_CODE( \
13 MYPACKAGE_VERSION_MAJOR, MYPACKAGE_VERSION_MINOR, MYPACKAGE_VERSION_PATCH)
14 #ifndef MYPACKAGE_PREVIOUS_VERSIONS
15 #define MYPACKAGE_FULL_VERSION_LIST \
16 PACKAGE_VERSION_STRING( \
17 MYPACKAGE_VERSION_MAJOR, MYPACKAGE_VERSION_MINOR, MYPACKAGE_VERSION_PATCH)
19 #define MYPACKAGE_FULL_VERSION_LIST \
20 MYPACKAGE_PREVIOUS_VERSIONS "," PACKAGE_VERSION_STRING( \
21 MYPACKAGE_VERSION_MAJOR, MYPACKAGE_VERSION_MINOR, MYPACKAGE_VERSION_PATCH)
26 const std::string
package = "Console";
27 const std::string versions = MYPACKAGE_FULL_VERSION_LIST;
28 const std::string summary =
"The Console Supervisor";
29 const std::string description =
30 "The Console Supervisor handles console messages that are displayed through the web "
31 "graphical user interface.";
32 const std::string authors =
"Ryan Rivera, Lorenzo Uplegger";
33 const std::string link =
"http://otsdaq.fnal.gov";
35 config::PackageInfo getPackageInfo();
36 void checkPackageDependencies();
37 std::set<std::string, std::less<std::string> > getPackageDependencies();