[project @ 2002-08-08 15:21:08 by unknown_lamer]
[clinton/bobotpp.git] / source / DCCPerson.C
1 // DCCPerson.C -*- C++ -*-
2 // Copyright (c) 1998 Etienne BERNARD
3 // Copyright (C) 2002 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 "DCCPerson.H"
20
21 DCCPerson::DCCPerson(DCCConnection *cnx)
22 : Person(cnx->bot, cnx->nuh), dcc(cnx)
23 { }
24
25 DCCPerson::DCCPerson(DCCPerson &p)
26 : Person(p), dcc(p.dcc)
27 { }
28
29 void
30 DCCPerson::sendNotice(String message)
31 {
32 dcc->sendNotice(message);
33 }
34
35 Person *
36 DCCPerson::copy()
37 {
38 return (Person *)(new DCCPerson(*this));
39 }
40
41 void
42 DCCPerson::keepAlive()
43 {
44 dcc->autoRemove = false;
45 }
46
47 bool
48 DCCPerson::handleInput ()
49 {
50 return dcc->handleInput ();
51 }