summaryrefslogtreecommitdiff
path: root/src/services.cpp
diff options
context:
space:
mode:
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");
-}