summaryrefslogtreecommitdiffstats
path: root/src/Common/UserManager.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/Common/UserManager.h')
-rw-r--r--src/Common/UserManager.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/Common/UserManager.h b/src/Common/UserManager.h
index 51f0441..466b9a9 100644
--- a/src/Common/UserManager.h
+++ b/src/Common/UserManager.h
@@ -85,8 +85,11 @@ class UserManager : private boost::noncopyable {
void addUser(const UserInfo &userInfo) throw(Core::Exception);
void updateUser(unsigned long uid, const UserInfo &userInfo) throw(Core::Exception);
+ void deleteUser(unsigned long uid) throw(Core::Exception);
+
void addGroup(const GroupInfo &groupInfo) throw(Core::Exception);
void updateGroup(unsigned long gid, const GroupInfo &groupInfo) throw(Core::Exception);
+ void deleteGroup(unsigned long gid) throw(Core::Exception);
};
}