Add gnulib gettext module for config.rpath
[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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18
19 #include "DCCPerson.H"
20
21 #include "DCCConnection.H"
22
23 DCCPerson::DCCPerson(DCCConnection *cnx)
24 : Person(cnx->get_bot(), cnx->get_nuh()), dcc(cnx)
25 { }
26
27 DCCPerson::DCCPerson(DCCPerson &p)
28 : Person(p), dcc(p.dcc)
29 { }
30
31 void
32 DCCPerson::sendNotice(String message)
33 {
34 dcc->sendNotice(message);
35 }
36
37 Person *
38 DCCPerson::copy()
39 {
40 return (Person *)(new DCCPerson(*this));
41 }
42
43 void
44 DCCPerson::keepAlive()
45 {
46 dcc->set_autoRemove (false);
47 }
48
49 bool
50 DCCPerson::handleInput ()
51 {
52 return dcc->handleInput ();
53 }