summaryrefslogtreecommitdiff
path: root/src/netcomputer.h
diff options
context:
space:
mode:
authorYohann Ferreira <bertram@cegetel.net>2006-01-20 23:17:19 +0000
committerYohann Ferreira <bertram@cegetel.net>2006-01-20 23:17:19 +0000
commitd318b2428878bd0e35b189b3e6d3bffd825da25c (patch)
treedc61bd08aec87a5293e1ca072079652ad6047423 /src/netcomputer.h
parent7960ff184f15a3b6029fef8e5100d24a6c556afe (diff)
downloadmanaserv-d318b2428878bd0e35b189b3e6d3bffd825da25c.tar.gz
manaserv-d318b2428878bd0e35b189b3e6d3bffd825da25c.tar.bz2
manaserv-d318b2428878bd0e35b189b3e6d3bffd825da25c.tar.xz
manaserv-d318b2428878bd0e35b189b3e6d3bffd825da25c.zip
Chat channeling commit part 3. Is now linked with the connection handler to chat in a specific channel. Also made some fixes on the chat channeling.
Diffstat (limited to 'src/netcomputer.h')
-rw-r--r--src/netcomputer.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/netcomputer.h b/src/netcomputer.h
index 2d4b5cf5..c6f2c5fc 100644
--- a/src/netcomputer.h
+++ b/src/netcomputer.h
@@ -91,7 +91,7 @@ class NetComputer
/**
* Get account associated with the connection
*/
- tmwserv::AccountPtr getAccount() { return accountPtr; }
+ tmwserv::AccountPtr getAccount() { return mAccountPtr; }
/**
* Set the selected character associated with connection
@@ -107,7 +107,7 @@ class NetComputer
/**
* Get character associated with the connection
*/
- tmwserv::BeingPtr getCharacter() { return characterPtr; }
+ tmwserv::BeingPtr getCharacter() { return mCharacterPtr; }
private:
ConnectionHandler *handler;
@@ -115,8 +115,8 @@ class NetComputer
std::queue<Packet*> queue; /**< Message Queue (FIFO) */
TCPsocket socket; /**< Client socket */
- tmwserv::AccountPtr accountPtr; /**< Account associated with connection */
- tmwserv::BeingPtr characterPtr; /**< Selected character */
+ tmwserv::AccountPtr mAccountPtr; /**< Account associated with connection */
+ tmwserv::BeingPtr mCharacterPtr; /**< Selected character */
};
#endif