Add version number as a static member (libver) of Util::Config.

This commit is contained in:
Thulinma 2012-08-28 23:39:42 +02:00
parent 3ec56cf675
commit a2f37a1bbd
2 changed files with 2 additions and 0 deletions

View file

@ -16,6 +16,7 @@ namespace Util{
static void signal_handler(int signum);
public:
//variables
static std::string libver; ///< Version number of the library as a string.
static bool is_active; ///< Set to true by activate(), set to false by the signal handler.
//functions
Config(std::string cmd, std::string version);