]> granicus.if.org Git - icinga2/blob - lib/base/application-version.cpp
Merge pull request #7185 from Icinga/bugfix/gelfwriter-wrong-log-facility
[icinga2] / lib / base / application-version.cpp
1 /* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
2
3 #include "base/application.hpp"
4 #include "icinga-version.h"
5 #include "icinga-spec-version.h"
6
7 using namespace icinga;
8
9 String Application::GetAppVersion()
10 {
11         return VERSION;
12 }
13
14 String Application::GetAppSpecVersion()
15 {
16         return SPEC_VERSION;
17 }