mirror of
https://github.com/Icinga/icinga2.git
synced 2025-04-08 17:05:25 +02:00
Timer: drop unnecessary base class
This commit is contained in:
parent
24681b30f6
commit
9b00c1c4dd
@ -4,7 +4,6 @@
|
||||
#define TIMER_H
|
||||
|
||||
#include "base/i2-base.hpp"
|
||||
#include "base/object.hpp"
|
||||
#include <boost/signals2.hpp>
|
||||
#include <memory>
|
||||
|
||||
@ -17,7 +16,7 @@ class TimerHolder;
|
||||
*
|
||||
* @ingroup base
|
||||
*/
|
||||
class Timer final : public Object
|
||||
class Timer final
|
||||
{
|
||||
public:
|
||||
typedef std::shared_ptr<Timer> Ptr;
|
||||
@ -28,7 +27,7 @@ public:
|
||||
return Ptr(new Timer());
|
||||
}
|
||||
|
||||
~Timer() override;
|
||||
~Timer();
|
||||
|
||||
static void Initialize();
|
||||
static void Uninitialize();
|
||||
|
Loading…
x
Reference in New Issue
Block a user