2012-05-10 12:06:41 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* Icinga 2 *
|
2016-01-12 08:29:59 +01:00
|
|
|
* Copyright (C) 2012-2016 Icinga Development Team (https://www.icinga.org/) *
|
2012-05-10 12:06:41 +02:00
|
|
|
* *
|
|
|
|
* 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. *
|
2012-05-10 12:06:41 +02:00
|
|
|
******************************************************************************/
|
|
|
|
|
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
|
|
|
|
*/
|
2013-11-04 23:14:34 +01:00
|
|
|
class Demo : public ObjectImpl<Demo>
|
2012-04-23 13:45:41 +02:00
|
|
|
{
|
2012-05-21 23:42:54 +02:00
|
|
|
public:
|
2014-11-03 00:44:04 +01:00
|
|
|
DECLARE_OBJECT(Demo);
|
|
|
|
DECLARE_OBJECTNAME(Demo);
|
2013-07-09 08:42:08 +02:00
|
|
|
|
2015-08-20 17:18:48 +02:00
|
|
|
virtual void Start(bool runtimeCreated);
|
2014-05-03 20:02:22 +02:00
|
|
|
|
2015-08-30 13:26:07 +02:00
|
|
|
static Value DemoMessageHandler(const MessageOrigin::Ptr& origin, const Dictionary::Ptr& params);
|
2014-05-03 20:02:22 +02:00
|
|
|
|
2012-05-21 23:42:54 +02:00
|
|
|
|
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 */
|