summaryrefslogtreecommitdiff
path: root/src/modules.cpp
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-02-23 19:39:38 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-02-23 19:39:38 +0000
commit7907a1f1cc78ca532547c824cd221060b57f4fff (patch)
treebc1c7cd9c217656225ed760091c8846f221f3ed4 /src/modules.cpp
parent6279a01bf5b6da48bedfdfe2d39dde69e46ae401 (diff)
Incorporating InspTimer into safelist as a test
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@3301 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules.cpp')
-rw-r--r--src/modules.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/modules.cpp b/src/modules.cpp
index 6f1236f60..7640f0edc 100644
--- a/src/modules.cpp
+++ b/src/modules.cpp
@@ -50,6 +50,7 @@ using namespace std;
#include "typedefs.h"
#include "modules.h"
#include "command_parse.h"
+#include "timer.h"
extern ServerConfig *Config;
extern InspIRCd* ServerInstance;
@@ -414,6 +415,11 @@ chanrec* Server::GetChannelIndex(long index)
return NULL;
}
+void Server::AddTimer(InspTimer* T)
+{
+ AddTimer(T);
+}
+
void Server::SendOpers(std::string s)
{
WriteOpers("%s",s.c_str());