ClientList: add typedef List

This commit is contained in:
Max Kellermann 2014-06-10 18:58:02 +02:00
parent 31e29e62f4
commit 507d8fdc6f
1 changed files with 5 additions and 3 deletions

View File

@ -25,10 +25,12 @@
class Client;
class ClientList {
typedef std::list<Client *> List;
const unsigned max_size;
unsigned size;
std::list<Client *> list;
List list;
public:
ClientList(unsigned _max_size)
@ -37,11 +39,11 @@ public:
CloseAll();
}
std::list<Client *>::iterator begin() {
List::iterator begin() {
return list.begin();
}
std::list<Client *>::iterator end() {
List::iterator end() {
return list.end();
}