]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/timer.h
More CoreExport, brought the errors down, but some still persist.
[user/henk/code/inspircd.git] / include / timer.h
index abe15a2b7c802474838a892223fb5b1ee82992b5..cc5364f672f5bd84cfca8c72c46b0c0bcdf7f657 100644 (file)
@@ -2,8 +2,8 @@
  *       | Inspire Internet Relay Chat Daemon |
  *       +------------------------------------+
  *
- *  InspIRCd: (C) 2002-2008 InspIRCd Development Team
- * See: http://www.inspircd.org/wiki/index.php/Credits
+ *  InspIRCd: (C) 2002-2009 InspIRCd Development Team
+ * 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 @@ class InspIRCd;
  * 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<Timer *> Timers;
 
-       /** Creating server instance
-        */
-       InspIRCd* ServerInstance;
  public:
        /** Constructor
         */
-       TimerManager(InspIRCd* Instance);
+       TimerManager();
+       ~TimerManager();
 
        /** Tick all pending Timers
         * @param TIME the current system time