summaryrefslogtreecommitdiffstats
path: root/src/Core/Requests/CommandRequest.h
diff options
context:
space:
mode:
authorMatthias Schiffer <matthias@gamezock.de>2009-03-04 23:14:34 +0100
committerMatthias Schiffer <matthias@gamezock.de>2009-03-04 23:14:34 +0100
commitde5fa3867791bf4bf84a52de8cd09821f9ce28ab (patch)
treec343a7fcdeabe9f982c968d5241d672c351942a7 /src/Core/Requests/CommandRequest.h
parentc316a3115bf790fb623f0765dd6b04f781af5b51 (diff)
downloadmad-de5fa3867791bf4bf84a52de8cd09821f9ce28ab.tar
mad-de5fa3867791bf4bf84a52de8cd09821f9ce28ab.zip
XmlRequest{,Handler} in Request{,Handler} umbenannt
Diffstat (limited to 'src/Core/Requests/CommandRequest.h')
-rw-r--r--src/Core/Requests/CommandRequest.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Core/Requests/CommandRequest.h b/src/Core/Requests/CommandRequest.h
index 534fcef..9c6c70d 100644
--- a/src/Core/Requests/CommandRequest.h
+++ b/src/Core/Requests/CommandRequest.h
@@ -20,13 +20,13 @@
#ifndef MAD_CORE_REQUESTS_COMMANDREQUEST_H_
#define MAD_CORE_REQUESTS_COMMANDREQUEST_H_
-#include <Common/XmlRequest.h>
+#include <Common/Request.h>
namespace Mad {
namespace Core {
namespace Requests {
-class CommandRequest : public Common::XmlRequest {
+class CommandRequest : public Common::Request {
private:
bool reboot;
@@ -35,7 +35,7 @@ class CommandRequest : public Common::XmlRequest {
virtual void handlePacket(Net::Connection*, uint16_t, const Common::XmlPacket &packet);
public:
- CommandRequest(bool reboot0, slot_type slot) : Common::XmlRequest(slot), reboot(reboot0) {}
+ CommandRequest(bool reboot0, slot_type slot) : Common::Request(slot), reboot(reboot0) {}
};
}