diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-07-19 23:48:06 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-07-19 23:48:06 +0000 |
commit | 2d4a319d961e3f9e6aa9f7926f9ed320d72de8da (patch) | |
tree | e751fa2ea6369adcce33c4c23347d8f66c93ab6b /src/modules/m_spanningtree/cachetimer.h | |
parent | 17fe68de7265f7bb1007255d80eb3d310ebd4e53 (diff) |
Fix total mess of makefile dependency macros (all depending on stuff they dont NEED to depend on)
and fix includes in all of m_spanningtree (everything including just about everything, doesnt need to)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@10046 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_spanningtree/cachetimer.h')
-rw-r--r-- | src/modules/m_spanningtree/cachetimer.h | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/src/modules/m_spanningtree/cachetimer.h b/src/modules/m_spanningtree/cachetimer.h new file mode 100644 index 000000000..3f97255b3 --- /dev/null +++ b/src/modules/m_spanningtree/cachetimer.h @@ -0,0 +1,37 @@ +/* +------------------------------------+ + * | Inspire Internet Relay Chat Daemon | + * +------------------------------------+ + * + * InspIRCd: (C) 2002-2008 InspIRCd Development Team + * See: http://www.inspircd.org/wiki/index.php/Credits + * + * This program is free but copyrighted software; see + * the file COPYING for details. + * + * --------------------------------------------------- + */ + +#ifndef __TIMESYNC_H__ +#define __TIMESYNC_H__ + +#include "timer.h" + +class ModuleSpanningTree; +class SpanningTreeUtilities; +class InspIRCd; + +/** 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 + * insert another of ourselves into the pending queue :) + */ +class CacheRefreshTimer : public Timer +{ + private: + InspIRCd *Instance; + SpanningTreeUtilities *Utils; + public: + CacheRefreshTimer(InspIRCd *Instance, SpanningTreeUtilities* Util); + virtual void Tick(time_t TIME); +}; + +#endif |