summaryrefslogtreecommitdiffstats
path: root/src/Daemon/Requests/IdentifyRequest.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/Daemon/Requests/IdentifyRequest.h')
-rw-r--r--src/Daemon/Requests/IdentifyRequest.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Daemon/Requests/IdentifyRequest.h b/src/Daemon/Requests/IdentifyRequest.h
index c3ab821..5009374 100644
--- a/src/Daemon/Requests/IdentifyRequest.h
+++ b/src/Daemon/Requests/IdentifyRequest.h
@@ -20,14 +20,14 @@
#ifndef MAD_DAEMON_REQUESTS_IDENTIFYREQUEST_H_
#define MAD_DAEMON_REQUESTS_IDENTIFYREQUEST_H_
-#include <Common/XmlRequest.h>
+#include <Common/Request.h>
#include <string>
namespace Mad {
namespace Daemon {
namespace Requests {
-class IdentifyRequest : public Common::XmlRequest {
+class IdentifyRequest : public Common::Request {
private:
std::string hostname;
@@ -36,7 +36,7 @@ class IdentifyRequest : public Common::XmlRequest {
virtual void handlePacket(Net::Connection*, uint16_t, const Common::XmlPacket &packet);
public:
- IdentifyRequest(const std::string &hostname0, slot_type slot) : Common::XmlRequest(slot), hostname(hostname0) {}
+ IdentifyRequest(const std::string &hostname0, slot_type slot) : Common::Request(slot), hostname(hostname0) {}
};
}