summaryrefslogtreecommitdiffstats
path: root/src/Common/RequestHandlers/SimpleRequestHandler.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/Common/RequestHandlers/SimpleRequestHandler.h')
-rw-r--r--src/Common/RequestHandlers/SimpleRequestHandler.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Common/RequestHandlers/SimpleRequestHandler.h b/src/Common/RequestHandlers/SimpleRequestHandler.h
index 3cf0f52..85cbd4c 100644
--- a/src/Common/RequestHandlers/SimpleRequestHandler.h
+++ b/src/Common/RequestHandlers/SimpleRequestHandler.h
@@ -31,12 +31,12 @@ namespace RequestHandlers {
class MAD_COMMON_EXPORT SimpleRequestHandler : public RequestHandler {
private:
std::string type;
- boost::function2<void, boost::shared_ptr<const XmlPacket>, XmlPacket*> handler;
+ boost::function2<void, boost::shared_ptr<const XmlData>, XmlData*> handler;
protected:
- virtual void handlePacket(boost::shared_ptr<const XmlPacket> packet);
+ virtual void handlePacket(boost::shared_ptr<const XmlData> packet);
- SimpleRequestHandler(Application *application, const std::string &type0, const boost::function2<void, boost::shared_ptr<const XmlPacket>, XmlPacket*> &handler0)
+ SimpleRequestHandler(Application *application, const std::string &type0, const boost::function2<void, boost::shared_ptr<const XmlData>, XmlData*> &handler0)
: RequestHandler(application), type(type0), handler(handler0) {}
};