[project @ 2005-06-28 09:54:46 by unknown_lamer]
[clinton/bobotpp.git] / source / DCCConnection.H
CommitLineData
cb21075d 1// DCCConnection.H -*- C++ -*-
2// Copyright (c) 1998 Etienne BERNARD
4edefeb6 3// Copyright (c) 2002,2003 Clinton Ebadi
cb21075d 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
39b022cb 17// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
cb21075d 18
19#ifndef DCCCONNECTION_H
20#define DCCCONNECTION_H
21
22#include <ctime>
23
24#include "Connection.H"
25#include "Bot.H"
fed59248 26#include "DCCPerson.H"
cb21075d 27
28class DCCPerson;
29class UserCommands;
30
31class DCCConnection : public Connection {
4edefeb6 32protected:
cb21075d 33 Bot *bot;
34 String nuh;
35 std::time_t lastSpoken;
36 bool autoRemove;
4edefeb6 37 DCCConnection (unsigned long, int);
cb21075d 38
39public:
40 DCCConnection(Bot *, String, unsigned long, int);
41
4edefeb6 42 virtual bool connect()=0;
43 virtual bool handleInput()=0;
cb21075d 44
4edefeb6 45 virtual void sendNotice(String)=0;
cb21075d 46
4edefeb6 47 // Accessors
48 virtual Bot* get_bot () const { return bot; };
49 virtual std::time_t get_lastSpoken () const { return lastSpoken; };
50 virtual bool get_autoRemove () const { return autoRemove; };
51 virtual String get_nuh () const { return nuh;};
52 // Setters
53 virtual void set_autoRemove (bool new_ar) { autoRemove = new_ar;};
54
55 // friend class Bot;
56 // friend class DCCPerson;
57 // friend class DCCParser;
58 // friend class UserCommands;
59 // friend class DCCManager;
cb21075d 60};
61
62#endif