summaryrefslogtreecommitdiffstats
path: root/src/modules/UserListManager/RequestHandlers/UserListRequestHandlerGroup.h
diff options
context:
space:
mode:
authorMatthias Schiffer <matthias@gamezock.de>2009-09-20 16:14:19 +0200
committerMatthias Schiffer <matthias@gamezock.de>2009-09-20 16:14:19 +0200
commitd6844595c9b47dab1db4b970ff6cc7fb3f64f107 (patch)
treec334db5dba4ae65636ad0b57c8ed7814e08b823b /src/modules/UserListManager/RequestHandlers/UserListRequestHandlerGroup.h
parentd0cc9153d53dd4bc8dadf8bbcbe4ac72dfbbb61e (diff)
downloadmad-d6844595c9b47dab1db4b970ff6cc7fb3f64f107.tar
mad-d6844595c9b47dab1db4b970ff6cc7fb3f64f107.zip
UserListManager: Added copy and rename requests
Diffstat (limited to 'src/modules/UserListManager/RequestHandlers/UserListRequestHandlerGroup.h')
-rw-r--r--src/modules/UserListManager/RequestHandlers/UserListRequestHandlerGroup.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/modules/UserListManager/RequestHandlers/UserListRequestHandlerGroup.h b/src/modules/UserListManager/RequestHandlers/UserListRequestHandlerGroup.h
index 105621b..61f4c7d 100644
--- a/src/modules/UserListManager/RequestHandlers/UserListRequestHandlerGroup.h
+++ b/src/modules/UserListManager/RequestHandlers/UserListRequestHandlerGroup.h
@@ -44,10 +44,14 @@ class MAD_MODULE_EXPORT UserListRequestHandlerGroup : public Common::RequestHan
void handleUserListListRequest(boost::shared_ptr<const Common::XmlData> packet, Common::XmlData *ret, Common::Connection *connection);
void handleUserListDownloadRequest(boost::shared_ptr<const Common::XmlData> packet, Common::XmlData *ret, Common::Connection *connection);
+ void handleUserListCopyRequest(boost::shared_ptr<const Common::XmlData> packet, Common::XmlData *ret, Common::Connection *connection);
+ void handleUserListRenameRequest(boost::shared_ptr<const Common::XmlData> packet, Common::XmlData *ret, Common::Connection *connection);
void handleUserListRemoveRequest(boost::shared_ptr<const Common::XmlData> packet, Common::XmlData *ret, Common::Connection *connection);
void handleUserListDiffListRequest(boost::shared_ptr<const Common::XmlData> packet, Common::XmlData *ret, Common::Connection *connection);
void handleUserListDiffDownloadRequest(boost::shared_ptr<const Common::XmlData> packet, Common::XmlData *ret, Common::Connection *connection);
+ void handleUserListDiffCopyRequest(boost::shared_ptr<const Common::XmlData> packet, Common::XmlData *ret, Common::Connection *connection);
+ void handleUserListDiffRenameRequest(boost::shared_ptr<const Common::XmlData> packet, Common::XmlData *ret, Common::Connection *connection);
void handleUserListDiffRemoveRequest(boost::shared_ptr<const Common::XmlData> packet, Common::XmlData *ret, Common::Connection *connection);
public: