[project @ 2005-06-23 06:20:44 by unknown_lamer]
[clinton/bobotpp.git] / source / Person.C
1 // Person.C -*- C++ -*-
2 // Copyright (c) 1998 Etienne BERNARD
3 // Copyright (c) 2005 Clinton Ebadi
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
17 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
18
19 #include "Utils.H"
20 #include "Person.H"
21
22 Person::Person(Bot *b, String a)
23 : bot(b), address(a)
24 { }
25
26 Person::Person(Person &p)
27 : bot(p.bot), address(p.address)
28 { }
29
30 Person *
31 Person::copy()
32 {
33 return new Person(*this);
34 }
35
36 String
37 Person::getNick() const
38 {
39 return Utils::get_nick (address);
40 }
41
42 String
43 Person::getAddress() const
44 {
45 return address;
46 }
47
48 Person &
49 Person::operator=(const String & a)
50 {
51 address = a;
52 return *this;
53 }
54
55 void
56 Person::sendNotice(String message)
57 {
58 bot->serverConnection->queue->sendNotice(getNick(), message);
59 }