2012-05-10 12:06:41 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* Icinga 2 *
|
2013-09-25 07:43:57 +02:00
|
|
|
* Copyright (C) 2012-2013 Icinga Development Team (http://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
|
|
|
|
2013-10-26 09:41:45 +02:00
|
|
|
#include "demo/demo.th"
|
2013-03-18 11:02:18 +01:00
|
|
|
#include "base/timer.h"
|
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:
|
2013-09-25 09:39:31 +02:00
|
|
|
DECLARE_PTR_TYPEDEFS(Demo);
|
|
|
|
DECLARE_TYPENAME(Demo);
|
2013-07-09 08:42:08 +02:00
|
|
|
|
2012-05-21 23:42:54 +02:00
|
|
|
virtual void Start(void);
|
|
|
|
virtual void Stop(void);
|
|
|
|
|
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 */
|