[project @ 2002-07-07 02:33:51 by unknown_lamer]
[clinton/bobotpp.git] / source / DCCPerson.C
1 // DCCPerson.C -*- C++ -*-
2 // Copyright (c) 1998 Etienne BERNARD
3
4 // This program is free software; you can redistribute it and/or modify
5 // it under the terms of the GNU General Public License as published by
6 // the Free Software Foundation; either version 2 of the License, or
7 // any later version.
8
9 // This program is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU General Public License for more details.
13
14 // You should have received a copy of the GNU General Public License
15 // along with this program; if not, write to the Free Software
16 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
17
18 #include "DCCPerson.H"
19
20 DCCPerson::DCCPerson(DCCConnection *cnx)
21 : Person(cnx->bot, cnx->nuh), dcc(cnx)
22 { }
23
24 DCCPerson::DCCPerson(DCCPerson &p)
25 : Person(p), dcc(p.dcc)
26 { }
27
28 void
29 DCCPerson::sendNotice(String message)
30 {
31 dcc->sendNotice(message);
32 }
33
34 Person *
35 DCCPerson::copy()
36 {
37 return (Person *)(new DCCPerson(*this));
38 }
39
40 void
41 DCCPerson::keepAlive()
42 {
43 dcc->autoRemove = false;
44 }