blob: d17775b7339add511cbefefc42417bffd061457a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
#include "base/application.hpp"
#include "icinga-version.h"
#include "icinga-spec-version.h"
using namespace icinga;
String Application::GetAppVersion()
{
return VERSION;
}
String Application::GetAppSpecVersion()
{
return SPEC_VERSION;
}
|