summaryrefslogtreecommitdiff
path: root/include/timer.h
diff options
context:
space:
mode:
authorom <om@e03df62e-2008-0410-955e-edbf42e46eb7>2006-04-10 22:50:41 +0000
committerom <om@e03df62e-2008-0410-955e-edbf42e46eb7>2006-04-10 22:50:41 +0000
commit09dd16b981c38cbde7573398cb50ae1cf0531ade (patch)
treec9c078d2b5e41c9c76e3e5175e66fb4b7cb002d6 /include/timer.h
parent90639721625b5da867effc7dd4adec003c1bd3b4 (diff)
Route some more stuff through socket.h and hash_map.h. Add #define protection to timer.h and remove some unneeded includes and externs from timer.cpp
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@3869 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include/timer.h')
-rw-r--r--include/timer.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/timer.h b/include/timer.h
index 3c4fb0897..6a4c9063b 100644
--- a/include/timer.h
+++ b/include/timer.h
@@ -14,6 +14,9 @@
* ---------------------------------------------------
*/
+#ifndef INSPIRCD_TIMER_H
+#define INSPIRCD_TIMER_H
+
/** Timer class for one-second resolution timers
* InspTimer provides a facility which allows module
* developers to create one-shot timers. The timer
@@ -55,3 +58,4 @@ void TickTimers(time_t TIME);
void AddTimer(InspTimer* T);
void TickMissedTimers(time_t TIME);
+#endif