Fix minor issue with logfile
[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 "DCCConnection.H"
24 #include "String.H"
25
26 class Bot;
27 class UserCommands;
28
29 class DCCChatConnection : public DCCConnection {
30 public:
31 DCCChatConnection(Bot *, String, unsigned long, int);
32
33 bool connect();
34 bool handleInput();
35
36 void sendNotice(String);
37
38 // friend class Bot;
39 // friend class DCCPerson;
40 // friend class DCCParser;
41 // friend class UserCommands;
42 // friend class DCCManager;
43 };
44
45 #endif