[project @ 2005-06-28 03:16:45 by unknown_lamer]
[clinton/bobotpp.git] / source / DCCChatConnection.H
1 // DCCChatConnection.H -*- C++ -*-
2 // Copyright (c) 2003 Clinton Ebadi
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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17
18 #ifndef DCCCHATCONNECTION_H
19 #define DCCCHATCONNECTION_H
20
21 #include <ctime>
22
23 #include "Connection.H"
24 #include "Bot.H"
25 #include "DCCPerson.H"
26 #include "DCCConnection.H"
27
28 class UserCommands;
29
30 class DCCChatConnection : public DCCConnection {
31 public:
32 DCCChatConnection(Bot *, String, unsigned long, int);
33
34 bool connect();
35 bool handleInput();
36
37 void sendNotice(String);
38
39 // friend class Bot;
40 // friend class DCCPerson;
41 // friend class DCCParser;
42 // friend class UserCommands;
43 // friend class DCCManager;
44 };
45
46 #endif