mirror of
https://github.com/Icinga/icinga2.git
synced 2026-02-24 10:21:12 -05:00
18 lines
235 B
C++
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;
|
|
}
|