[project @ 2005-06-28 09:54:46 by unknown_lamer]
[clinton/bobotpp.git] / source / ChannelList.H
1 // ChannelList.H -*- C++ -*-
2 // Copyright (c) 1997, 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 #ifndef CHANNELLIST_H
20 #define CHANNELLIST_H
21
22 #include <map>
23
24 #include "String.H"
25 #include "ServerConnection.H"
26 #include "Channel.H"
27
28 class UserCommands;
29
30 class ChannelList {
31 std::map<String, Channel *, std::less<String> > channel_list;
32
33 public:
34 ChannelList();
35 ~ChannelList();
36
37 void addChannel(ServerConnection *, String, String = "");
38 void delChannel(String);
39
40 Channel * getChannel(String);
41
42 void clear();
43
44 std::map<String, Channel *, std::less<String> >::iterator begin()
45 { return channel_list.begin(); }
46 std::map<String, Channel *, std::less<String> >::iterator end()
47 { return channel_list.end(); }
48
49 friend class UserCommands;
50 };
51
52 #endif