summaryrefslogtreecommitdiff
path: root/src/services.cpp
diff options
context:
space:
mode:
authorcyberbotx <cyberbotx@5417fbe8-f217-4b02-8779-1006273d7864>2008-11-30 16:25:26 +0000
committercyberbotx <cyberbotx@5417fbe8-f217-4b02-8779-1006273d7864>2008-11-30 16:25:26 +0000
commitb779e4d3bb50845e6b20a083e8ed75bba3d59079 (patch)
tree0ea3c2e5de34fe9a061ef05a723e526e81ddcd76 /src/services.cpp
parent685edb99999068e799287d6f2178f4459ede108f (diff)
Removed Service class, if we need something like it later we can add it back, but for now it's just an extra class without a purpose.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1822 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/services.cpp')
-rw-r--r--src/services.cpp22
1 files changed, 0 insertions, 22 deletions
diff --git a/src/services.cpp b/src/services.cpp
deleted file mode 100644
index 3d67bb168..000000000
--- a/src/services.cpp
+++ /dev/null
@@ -1,22 +0,0 @@
-/*
- * Copyright (C) 2008 Naram Qashat <cyberbotx@cyberbotx.com>
- * Copyright (C) 2008 Anope Team <info@anope.org>
- *
- * Please read COPYING and README for further details.
- *
- *
- * $Id$
- *
- */
-
-#include "services.h"
-
-Service::Service(const char *nnick, const char *nuser, const char *nhost, const char *nreal) : BotInfo(nnick, nuser, nhost, nreal)
-{
- ircdproto->SendClientIntroduction(this->nick, this->user, this->host, this->real, ircd->pseudoclient_mode, this->uid.c_str());
-}
-
-Service::~Service()
-{
- ircdproto->SendQuit(this, "Terminating");
-}