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 5877bac..27f4dfe 100644
--- a/src/Common/UserManager.h
+++ b/src/Common/UserManager.h
@@ -84,6 +84,9 @@ class UserManager : private boost::noncopyable {
void setPassword(unsigned long uid, const std::string &password) throw(Core::Exception);
void addUser(const UserInfo &userInfo) throw(Core::Exception);
+ void updateUser(unsigned long uid, const UserInfo &userInfo) throw(Core::Exception);
+ void addGroup(const GroupInfo &groupInfo) throw(Core::Exception);
+ void updateGroup(unsigned long gid, const GroupInfo &groupInfo) throw(Core::Exception);
};
}