summaryrefslogtreecommitdiffstats
path: root/src/Client/CommandParser.cpp
diff options
context:
space:
mode:
authorMatthias Schiffer <matthias@gamezock.de>2008-09-13 04:39:42 +0200
committerMatthias Schiffer <matthias@gamezock.de>2008-09-13 04:39:42 +0200
commitd710e7dc5e8f3895f5d1aa6bd1db0ef3151af8ca (patch)
treee7a87fb03e22ee044c221a46dfeebc1a1046fd2b /src/Client/CommandParser.cpp
parent7e87778a02f3d37865c10051a3f14038bbbcbaef (diff)
downloadmad-d710e7dc5e8f3895f5d1aa6bd1db0ef3151af8ca.tar
mad-d710e7dc5e8f3895f5d1aa6bd1db0ef3151af8ca.zip
Und wieder eine Umbenennungsorgie...
Diffstat (limited to 'src/Client/CommandParser.cpp')
-rw-r--r--src/Client/CommandParser.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Client/CommandParser.cpp b/src/Client/CommandParser.cpp
index ed15b7b..decb28e 100644
--- a/src/Client/CommandParser.cpp
+++ b/src/Client/CommandParser.cpp
@@ -18,8 +18,8 @@
*/
#include "CommandParser.h"
-#include "Request/CoreStatusRequest.h"
-#include <Common/Request/DisconnectRequest.h>
+#include "Requests/CoreStatusRequest.h"
+#include <Common/Requests/DisconnectRequest.h>
#include <Net/Packets/HostStatusPacket.h>
#include <iostream>
@@ -86,14 +86,14 @@ void CommandParser::helpCommand(const std::vector<std::string> &args) {
void CommandParser::statusCommand(const std::vector<std::string>&) {
activeRequests++;
- Request::CoreStatusRequest::send(connection, *requestManager, sigc::mem_fun(this, &CommandParser::coreStatusRequestFinished));
+ Requests::CoreStatusRequest::send(connection, *requestManager, sigc::mem_fun(this, &CommandParser::coreStatusRequestFinished));
}
void CommandParser::exitCommand(const std::vector<std::string>&) {
activeRequests++;
disconnect = true;
- Common::Request::DisconnectRequest::send(connection, *requestManager, sigc::mem_fun(this, &CommandParser::requestFinished));
+ Common::Requests::DisconnectRequest::send(connection, *requestManager, sigc::mem_fun(this, &CommandParser::requestFinished));
}
void CommandParser::coreStatusRequestFinished(const Net::Packets::HostStatusPacket &packet) {