diff options
Diffstat (limited to 'src/net/tmwserv/chatserver')
-rw-r--r-- | src/net/tmwserv/chatserver/chatserver.cpp | 7 | ||||
-rw-r--r-- | src/net/tmwserv/chatserver/guild.cpp | 10 | ||||
-rw-r--r-- | src/net/tmwserv/chatserver/guild.h | 2 | ||||
-rw-r--r-- | src/net/tmwserv/chatserver/party.cpp | 11 | ||||
-rw-r--r-- | src/net/tmwserv/chatserver/party.h | 1 |
5 files changed, 14 insertions, 17 deletions
diff --git a/src/net/tmwserv/chatserver/chatserver.cpp b/src/net/tmwserv/chatserver/chatserver.cpp index 1e55cbe6..49a17367 100644 --- a/src/net/tmwserv/chatserver/chatserver.cpp +++ b/src/net/tmwserv/chatserver/chatserver.cpp @@ -23,9 +23,10 @@ #include "internal.h" -#include "../connection.h" -#include "../../messageout.h" -#include "../protocol.h" +#include "net/tmwserv/connection.h" +#include "net/tmwserv/protocol.h" + +#include "net/messageout.h" using Net::ChatServer::connection; diff --git a/src/net/tmwserv/chatserver/guild.cpp b/src/net/tmwserv/chatserver/guild.cpp index bf758586..740e9efa 100644 --- a/src/net/tmwserv/chatserver/guild.cpp +++ b/src/net/tmwserv/chatserver/guild.cpp @@ -19,16 +19,16 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ - #include "guild.h" #include "internal.h" -#include "../connection.h" -#include "../../messageout.h" -#include "../protocol.h" +#include "net/tmwserv/connection.h" +#include "net/tmwserv/protocol.h" + +#include "net/messageout.h" -#include "../../../log.h" +#include "log.h" void Net::ChatServer::Guild::createGuild(const std::string &name) { diff --git a/src/net/tmwserv/chatserver/guild.h b/src/net/tmwserv/chatserver/guild.h index 0d1f5204..2e9cf9a6 100644 --- a/src/net/tmwserv/chatserver/guild.h +++ b/src/net/tmwserv/chatserver/guild.h @@ -19,7 +19,6 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ - #ifndef NET_CHATSERVER_GUILD_H #define NET_CHATSERVER_GUILD_H @@ -66,4 +65,3 @@ namespace Net } #endif - diff --git a/src/net/tmwserv/chatserver/party.cpp b/src/net/tmwserv/chatserver/party.cpp index be7bf390..e5bdd861 100644 --- a/src/net/tmwserv/chatserver/party.cpp +++ b/src/net/tmwserv/chatserver/party.cpp @@ -19,16 +19,16 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ - #include "party.h" #include "internal.h" -#include "../connection.h" -#include "../../messageout.h" -#include "../protocol.h" +#include "net/tmwserv/connection.h" +#include "net/tmwserv/protocol.h" + +#include "net/messageout.h" -#include "../../../log.h" +#include "log.h" void Net::ChatServer::Party::invitePlayer(const std::string &name) { @@ -67,4 +67,3 @@ void Net::ChatServer::Party::quitParty() Net::ChatServer::connection->send(msg); } - diff --git a/src/net/tmwserv/chatserver/party.h b/src/net/tmwserv/chatserver/party.h index a35c0df5..b3f0020b 100644 --- a/src/net/tmwserv/chatserver/party.h +++ b/src/net/tmwserv/chatserver/party.h @@ -19,7 +19,6 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ - #ifndef NET_CHATSERVER_PARTY_H #define NET_CHATSERVER_PARTY_H |