summaryrefslogtreecommitdiffstats
path: root/src/modules/UserListManager/UserListManager.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules/UserListManager/UserListManager.h')
-rw-r--r--src/modules/UserListManager/UserListManager.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/modules/UserListManager/UserListManager.h b/src/modules/UserListManager/UserListManager.h
index 6d2599b..6763dae 100644
--- a/src/modules/UserListManager/UserListManager.h
+++ b/src/modules/UserListManager/UserListManager.h
@@ -70,6 +70,8 @@ class MAD_MODULE_EXPORT UserListManager : private Core::Configurable, private bo
bool existsUserList(const std::string &name);
boost::shared_ptr<UserList> loadUserList(const std::string &name);
void storeUserList(const std::string &name, const UserList *list);
+ void copyUserList(const std::string &fromName, const std::string &toName);
+ void renameUserList(const std::string &fromName, const std::string &toName);
void removeUserList(const std::string &name);
const std::set<std::string>& getUserListDiffs() const {
@@ -79,6 +81,8 @@ class MAD_MODULE_EXPORT UserListManager : private Core::Configurable, private bo
bool existsUserListDiff(const std::string &name);
boost::shared_ptr<UserListDiff> loadUserListDiff(const std::string &name);
void storeUserListDiff(const std::string &name, const UserListDiff *list);
+ void copyUserListDiff(const std::string &fromName, const std::string &toName);
+ void renameUserListDiff(const std::string &fromName, const std::string &toName);
void removeUserListDiff(const std::string &name);
boost::shared_ptr<UserList> getCurrentUserList();