mirror of
https://github.com/Icinga/icinga2.git
synced 2026-07-10 09:31:04 -04:00
18 lines
357 B
C++
18 lines
357 B
C++
// SPDX-FileCopyrightText: 2012 Icinga GmbH <https://icinga.com>
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#include "base/application.hpp"
|
|
#include "icinga-version.h"
|
|
#include "icinga-spec-version.h"
|
|
|
|
using namespace icinga;
|
|
|
|
String Application::GetAppVersion()
|
|
{
|
|
return VERSION;
|
|
}
|
|
|
|
String Application::GetAppPackageVersion()
|
|
{
|
|
return SPEC_VERSION;
|
|
}
|