]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_spanningtree/cachetimer.h
Remove now needless User::ForceNickChange()
[user/henk/code/inspircd.git] / src / modules / m_spanningtree / cachetimer.h
index aec53933200bc9393d5da2fa4440b0cd25e0e640..89933cc4bdcc6cf30309d5d9038f2e68bcdccd96 100644 (file)
@@ -1,24 +1,23 @@
-/*       +------------------------------------+
- *       | Inspire Internet Relay Chat Daemon |
- *       +------------------------------------+
+/*
+ * InspIRCd -- Internet Relay Chat Daemon
  *
- *  InspIRCd: (C) 2002-2009 InspIRCd Development Team
- * See: http://wiki.inspircd.org/Credits
+ *   Copyright (C) 2008 Craig Edwards <craigedwards@brainbox.cc>
  *
- * This program is free but copyrighted software; see
- *            the file COPYING for details.
+ * This file is part of InspIRCd.  InspIRCd 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, version 2.
  *
- * ---------------------------------------------------
+ * 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, see <http://www.gnu.org/licenses/>.
  */
 
-#ifndef __TIMESYNC_H__
-#define __TIMESYNC_H__
-
-#include "timer.h"
 
-class ModuleSpanningTree;
-class SpanningTreeUtilities;
-class InspIRCd;
+#pragma once
 
 /** Create a timer which recurs every second, we inherit from Timer.
  * Timer is only one-shot however, so at the end of each Tick() we simply
@@ -26,12 +25,7 @@ class InspIRCd;
  */
 class CacheRefreshTimer : public Timer
 {
- private:
-       InspIRCd *Instance;
-       SpanningTreeUtilities *Utils;
  public:
-       CacheRefreshTimer(InspIRCd *Instance, SpanningTreeUtilities* Util);
-       virtual void Tick(time_t TIME);
+       CacheRefreshTimer();
+       bool Tick(time_t TIME);
 };
-
-#endif