icinga2/components/demo/demo.h

50 lines
1.8 KiB
C
Raw Normal View History

/******************************************************************************
* Icinga 2 *
2013-09-25 07:43:57 +02:00
* Copyright (C) 2012-2013 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
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
*/
class Demo : public ObjectImpl<Demo>
2012-04-23 13:45:41 +02:00
{
public:
2013-09-25 09:39:31 +02:00
DECLARE_PTR_TYPEDEFS(Demo);
DECLARE_TYPENAME(Demo);
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 */