summaryrefslogtreecommitdiff
path: root/src/net/manaserv/chatserver/party.cpp
diff options
context:
space:
mode:
authorJared Adams <jaxad0127@gmail.com>2009-11-03 10:18:25 -0700
committerJared Adams <jaxad0127@gmail.com>2009-11-03 10:18:25 -0700
commitacd557f9472c711fe92b9c158ec336abf688bf7b (patch)
tree2295d13589411ee88afe16f4997bea65b4ebba94 /src/net/manaserv/chatserver/party.cpp
parentc60d3a98dbbb20621742bfd82bbaaa6b7085a8ae (diff)
downloadmana-client-acd557f9472c711fe92b9c158ec336abf688bf7b.tar.gz
mana-client-acd557f9472c711fe92b9c158ec336abf688bf7b.tar.bz2
mana-client-acd557f9472c711fe92b9c158ec336abf688bf7b.tar.xz
mana-client-acd557f9472c711fe92b9c158ec336abf688bf7b.zip
Remove more _SUPPORT ifdefs and do some cleanup
Diffstat (limited to 'src/net/manaserv/chatserver/party.cpp')
-rw-r--r--src/net/manaserv/chatserver/party.cpp28
1 files changed, 16 insertions, 12 deletions
diff --git a/src/net/manaserv/chatserver/party.cpp b/src/net/manaserv/chatserver/party.cpp
index 26b45346..fdefc59d 100644
--- a/src/net/manaserv/chatserver/party.cpp
+++ b/src/net/manaserv/chatserver/party.cpp
@@ -24,56 +24,60 @@
#include "internal.h"
#include "net/manaserv/connection.h"
+#include "net/manaserv/messageout.h"
#include "net/manaserv/protocol.h"
-#include "net/messageout.h"
-
#include "log.h"
-void Net::ChatServer::Party::invitePlayer(const std::string &name)
+namespace ManaServ
+{
+
+void ChatServer::Party::invitePlayer(const std::string &name)
{
logger->log("Sending PCMSG_PARTY_INVITE");
MessageOut msg(PCMSG_PARTY_INVITE);
msg.writeString(name);
- Net::ChatServer::connection->send(msg);
+ ChatServer::connection->send(msg);
}
-void Net::ChatServer::Party::acceptInvite(const std::string &name)
+void ChatServer::Party::acceptInvite(const std::string &name)
{
logger->log("Sending PCMSG_PARTY_ACCEPT_INVITE");
MessageOut msg(PCMSG_PARTY_ACCEPT_INVITE);
msg.writeString(name);
- Net::ChatServer::connection->send(msg);
+ ChatServer::connection->send(msg);
}
-void Net::ChatServer::Party::rejectInvite(const std::string &name)
+void ChatServer::Party::rejectInvite(const std::string &name)
{
logger->log("Sending PCMSG_PARTY_REJECT_INVITE");
MessageOut msg(PCMSG_PARTY_REJECT_INVITE);
msg.writeString(name);
- Net::ChatServer::connection->send(msg);
+ ChatServer::connection->send(msg);
}
-void Net::ChatServer::Party::getPartyMembers()
+void ChatServer::Party::getPartyMembers()
{
logger->log("Sending PCMSG_PARTY_GET_MEMBERS");
// MessageOut msg(PCMSG_GUILD_GET_MEMBERS);
// msg.writeInt16(guildId);
-// Net::ChatServer::connection->send(msg);
+// ChatServer::connection->send(msg);
}
-void Net::ChatServer::Party::quitParty()
+void ChatServer::Party::quitParty()
{
logger->log("Sending PCMSG_PARTY_QUIT");
MessageOut msg(PCMSG_PARTY_QUIT);
- Net::ChatServer::connection->send(msg);
+ ChatServer::connection->send(msg);
+}
+
}