2012-04-23 13:45:41 +02:00
|
|
|
#ifndef DEMOCOMPONENT_H
|
|
|
|
#define DEMOCOMPONENT_H
|
|
|
|
|
|
|
|
namespace icinga
|
|
|
|
{
|
|
|
|
|
|
|
|
class DemoComponent : public Component
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
Timer::Ptr m_DemoTimer;
|
|
|
|
VirtualEndpoint::Ptr m_DemoEndpoint;
|
|
|
|
|
|
|
|
IcingaApplication::Ptr GetIcingaApplication(void);
|
|
|
|
|
|
|
|
int DemoTimerHandler(const TimerEventArgs& tea);
|
|
|
|
int NewEndpointHandler(const NewEndpointEventArgs& neea);
|
2012-04-24 07:16:34 +02:00
|
|
|
int HelloWorldRequestHandler(const NewRequestEventArgs& nrea);
|
2012-04-23 13:45:41 +02:00
|
|
|
|
|
|
|
public:
|
|
|
|
virtual string GetName(void) const;
|
|
|
|
virtual void Start(void);
|
|
|
|
virtual void Stop(void);
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* DEMOCOMPONENT_H */
|