Use access function instad of %module-public-interface
[clinton/bobotpp.git] / source / ServerList.H
1 // ServerList.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 SERVERLIST_H
20 #define SERVERLIST_H
21
22 #ifdef HAVE_CONFIG_H
23 #include "config.h"
24 #endif
25
26 #include <vector>
27
28 class Server;
29 class UserCommands;
30
31 #ifdef USESCRIPTS
32 class ScriptCommands;
33 #endif
34
35 class ServerList {
36 std::vector<Server *> v;
37 std::vector<Server *>::iterator it;
38 Server * current;
39 int currentNumber;
40
41 std::vector<Server *>::iterator begin()
42 { return v.begin(); }
43 std::vector<Server *>::iterator end()
44 { return v.end(); }
45
46 public:
47 ServerList();
48 ~ServerList();
49
50 void addServer(Server *);
51 void delServer(int);
52
53 Server * nextServer();
54 Server * currentServer();
55
56 Server * get(int n) const { return v[n]; }
57 int size() { return v.size(); }
58
59 #ifdef USESCRIPTS
60 friend class ScriptCommands;
61 #endif
62 friend class UserCommands;
63 };
64
65 #endif