summaryrefslogtreecommitdiffstats
path: root/src/connectionhandler.h
diff options
context:
space:
mode:
authorBjørn Lindeijer <bjorn@lindeijer.nl>2005-07-19 01:40:32 +0000
committerBjørn Lindeijer <bjorn@lindeijer.nl>2005-07-19 01:40:32 +0000
commitcb25562fc18a169ee5fe2e2440b5267cbe0b9c6e (patch)
tree02f19cdc16f875cd5b53b19c364ea0a6b65104f8 /src/connectionhandler.h
parent62395df8a674475cd7b277e964cc5512fa6e7576 (diff)
downloadmanaserv-cb25562fc18a169ee5fe2e2440b5267cbe0b9c6e.tar.gz
manaserv-cb25562fc18a169ee5fe2e2440b5267cbe0b9c6e.tar.xz
manaserv-cb25562fc18a169ee5fe2e2440b5267cbe0b9c6e.zip
Changing the way the message ID is read.
Diffstat (limited to 'src/connectionhandler.h')
-rw-r--r--src/connectionhandler.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/connectionhandler.h b/src/connectionhandler.h
index 589838b..a66c075 100644
--- a/src/connectionhandler.h
+++ b/src/connectionhandler.h
@@ -106,7 +106,9 @@ class ConnectionHandler
private:
std::map<unsigned int, MessageHandler*> handlers;
- std::list<NetComputer*> clients;
+
+ typedef std::list<NetComputer*> NetComputers;
+ NetComputers clients;
};
#endif