icinga2/lib/demo/demo.hpp

53 lines
1.9 KiB
C++
Raw Normal View History

/******************************************************************************
* Icinga 2 *
2015-01-22 12:00:23 +01:00
* Copyright (C) 2012-2015 Icinga Development Team (http://www.icinga.org) *
* *
* This program is free software; you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation; either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program; if not, write to the Free Software Foundation *
2012-05-11 13:33:57 +02:00
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. *
******************************************************************************/
2013-09-25 09:39:31 +02:00
#ifndef DEMO_H
#define DEMO_H
2012-04-23 13:45:41 +02:00
2014-05-25 16:23:35 +02:00
#include "demo/demo.thpp"
#include "remote/messageorigin.hpp"
#include "base/timer.hpp"
2013-03-17 20:19:29 +01:00
2012-04-23 13:45:41 +02:00
namespace icinga
{
2012-05-19 11:04:52 +02:00
/**
* @ingroup demo
*/
class Demo : public ObjectImpl<Demo>
2012-04-23 13:45:41 +02:00
{
public:
2014-11-03 00:44:04 +01:00
DECLARE_OBJECT(Demo);
DECLARE_OBJECTNAME(Demo);
virtual void Start(void);
static Value DemoMessageHandler(const MessageOrigin& origin, const Dictionary::Ptr& params);
2012-04-23 13:45:41 +02:00
private:
Timer::Ptr m_DemoTimer;
2012-06-15 19:32:41 +02:00
void DemoTimerHandler(void);
2012-04-23 13:45:41 +02:00
};
}
2013-09-25 09:39:31 +02:00
#endif /* DEMO_H */