2019-02-25 14:48:22 +01:00
|
|
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
2014-11-20 09:59:39 +01:00
|
|
|
|
|
|
|
#include "base/application.hpp"
|
|
|
|
#include "icinga-version.h"
|
2016-08-25 17:32:20 +02:00
|
|
|
#include "icinga-spec-version.h"
|
2014-11-20 09:59:39 +01:00
|
|
|
|
|
|
|
using namespace icinga;
|
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
String Application::GetAppVersion()
|
2014-11-20 09:59:39 +01:00
|
|
|
{
|
|
|
|
return VERSION;
|
|
|
|
}
|
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
String Application::GetAppSpecVersion()
|
2016-08-25 17:32:20 +02:00
|
|
|
{
|
|
|
|
return SPEC_VERSION;
|
|
|
|
}
|