icinga2/icinga/endpoint.cpp
Gunnar Beutner 390a00e546 Made build system more Windows-friendly
Implemented endpoint system for the discovery service
2012-04-06 08:56:52 +02:00

18 lines
235 B
C++

#include "i2-icinga.h"
using namespace icinga;
Endpoint::Endpoint(void)
{
m_Connected = false;
}
void Endpoint::SetConnected(bool connected)
{
m_Connected = connected;
}
bool Endpoint::GetConnected(void)
{
return m_Connected;
}