[project @ 2005-07-04 08:15:08 by unknown_lamer]
[clinton/bobotpp.git] / source / DCCChatConnection.H
CommitLineData
4edefeb6 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
39b022cb 16// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
4edefeb6 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
28class UserCommands;
29
30class DCCChatConnection : public DCCConnection {
31public:
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