X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=include%2Ftimer.h;h=cc5364f672f5bd84cfca8c72c46b0c0bcdf7f657;hb=ff3eef491aa9e107d09d9dd9560ef7715b37b3b3;hp=519648a2441d3dda1522a9c30c72f0c1bc7be473;hpb=43847ec9c7e1a195163eb4c529f1c92fd1ace0a4;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/include/timer.h b/include/timer.h index 519648a24..cc5364f67 100644 --- a/include/timer.h +++ b/include/timer.h @@ -3,7 +3,7 @@ * +------------------------------------+ * * InspIRCd: (C) 2002-2009 InspIRCd Development Team - * See: http://www.inspircd.org/wiki/index.php/Credits + * See: http://wiki.inspircd.org/Credits * * This program is free but copyrighted software; see * the file COPYING for details. @@ -14,8 +14,6 @@ #ifndef INSPIRCD_TIMER_H #define INSPIRCD_TIMER_H -//class InspIRCd; - /** Timer class for one-second resolution timers * Timer provides a facility which allows module * developers to create one-shot timers. The timer @@ -26,7 +24,7 @@ * your object (which you should override) will be called * at the given time. */ -class CoreExport Timer : public Extensible +class CoreExport Timer { private: /** The triggering time @@ -111,20 +109,18 @@ class CoreExport Timer : public Extensible * This will ensure timers are not missed, as well as removing timers that have * expired and allowing the addition of new ones. */ -class CoreExport TimerManager : public Extensible +class CoreExport TimerManager { protected: /** A list of all pending timers */ std::vector Timers; - /** Creating server instance - */ - InspIRCd* ServerInstance; public: /** Constructor */ - TimerManager(InspIRCd* Instance); + TimerManager(); + ~TimerManager(); /** Tick all pending Timers * @param TIME the current system time