mirror of
https://github.com/anope/anope.git
synced 2026-06-30 14:06:38 +02:00
f300ac836e
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1816 5417fbe8-f217-4b02-8779-1006273d7864
23 lines
548 B
C++
23 lines
548 B
C++
/*
|
|
* 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");
|
|
}
|