[project @ 2005-06-29 20:20:59 by unknown_lamer]
[clinton/bobotpp.git] / source / Person.C
CommitLineData
cb21075d 1// Person.C -*- C++ -*-
2// Copyright (c) 1998 Etienne BERNARD
a6339323 3// Copyright (c) 2005 Clinton Ebadi
cb21075d 4
5// This program is free software; you can redistribute it and/or modify
6// it under the terms of the GNU General Public License as published by
7// the Free Software Foundation; either version 2 of the License, or
8// any later version.
9
10// This program is distributed in the hope that it will be useful,
11// but WITHOUT ANY WARRANTY; without even the implied warranty of
12// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13// GNU General Public License for more details.
14
15// You should have received a copy of the GNU General Public License
16// along with this program; if not, write to the Free Software
39b022cb 17// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
cb21075d 18
19#include "Utils.H"
20#include "Person.H"
21
22Person::Person(Bot *b, String a)
23 : bot(b), address(a)
24{ }
25
26Person::Person(Person &p)
27 : bot(p.bot), address(p.address)
28{ }
29
30Person *
31Person::copy()
32{
33 return new Person(*this);
34}
35
36String
37Person::getNick() const
38{
a6339323 39 return Utils::get_nick (address);
cb21075d 40}
41
42String
43Person::getAddress() const
44{
45 return address;
46}
47
48Person &
49Person::operator=(const String & a)
50{
51 address = a;
52 return *this;
53}
54
55void
56Person::sendNotice(String message)
57{
58 bot->serverConnection->queue->sendNotice(getNick(), message);
59}