2026-01-27 09:06:40 -05:00
|
|
|
// SPDX-FileCopyrightText: 2012 Icinga GmbH <https://icinga.com>
|
|
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2014-11-20 03:59:39 -05:00
|
|
|
|
|
|
|
|
#include "base/application.hpp"
|
|
|
|
|
#include "icinga-version.h"
|
2016-08-25 11:32:20 -04:00
|
|
|
#include "icinga-spec-version.h"
|
2014-11-20 03:59:39 -05:00
|
|
|
|
|
|
|
|
using namespace icinga;
|
|
|
|
|
|
2018-01-03 22:25:35 -05:00
|
|
|
String Application::GetAppVersion()
|
2014-11-20 03:59:39 -05:00
|
|
|
{
|
|
|
|
|
return VERSION;
|
|
|
|
|
}
|
|
|
|
|
|
2018-01-03 22:25:35 -05:00
|
|
|
String Application::GetAppSpecVersion()
|
2016-08-25 11:32:20 -04:00
|
|
|
{
|
|
|
|
|
return SPEC_VERSION;
|
|
|
|
|
}
|