mirror of
				https://github.com/Icinga/icinga2.git
				synced 2025-11-04 13:45:04 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			291 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			291 B
		
	
	
	
		
			C++
		
	
	
	
	
	
/* 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;
 | 
						|
}
 |