diff options
author | Jared Adams <jaxad0127@gmail.com> | 2009-11-03 10:18:25 -0700 |
---|---|---|
committer | Jared Adams <jaxad0127@gmail.com> | 2009-11-03 10:18:25 -0700 |
commit | acd557f9472c711fe92b9c158ec336abf688bf7b (patch) | |
tree | 2295d13589411ee88afe16f4997bea65b4ebba94 /src/net/manaserv/connection.h | |
parent | c60d3a98dbbb20621742bfd82bbaaa6b7085a8ae (diff) | |
download | mana-acd557f9472c711fe92b9c158ec336abf688bf7b.tar.gz mana-acd557f9472c711fe92b9c158ec336abf688bf7b.tar.bz2 mana-acd557f9472c711fe92b9c158ec336abf688bf7b.tar.xz mana-acd557f9472c711fe92b9c158ec336abf688bf7b.zip |
Remove more _SUPPORT ifdefs and do some cleanup
Diffstat (limited to 'src/net/manaserv/connection.h')
-rw-r--r-- | src/net/manaserv/connection.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/net/manaserv/connection.h b/src/net/manaserv/connection.h index b340546b..e5db8c8e 100644 --- a/src/net/manaserv/connection.h +++ b/src/net/manaserv/connection.h @@ -26,10 +26,10 @@ #include <enet/enet.h> -class MessageOut; - -namespace Net +namespace ManaServ { + class MessageOut; + /** * \ingroup Network */ @@ -65,10 +65,10 @@ namespace Net /** * Sends a message. */ - void send(const MessageOut &msg); + void send(const ManaServ::MessageOut &msg); private: - friend Connection *Net::getConnection(); + friend Connection *ManaServ::getConnection(); Connection(ENetHost *client); short mPort; @@ -78,4 +78,4 @@ namespace Net }; } -#endif +#endif // NET_MANASERV_CONNECTION_H |