summaryrefslogtreecommitdiffstats
path: root/src/Common/UserBackend.h
diff options
context:
space:
mode:
authorMatthias Schiffer <matthias@gamezock.de>2009-07-11 01:11:21 +0200
committerMatthias Schiffer <matthias@gamezock.de>2009-07-11 01:11:21 +0200
commitbf4c6ec2b7694f1a844eef5989b77e83a8cab362 (patch)
treea407ccab48195d61d4e04ccf8581b1328fd08e72 /src/Common/UserBackend.h
parentb8aa377d883c316f544274dd24db9f079fb8f02a (diff)
downloadmad-bf4c6ec2b7694f1a844eef5989b77e83a8cab362.tar
mad-bf4c6ec2b7694f1a844eef5989b77e83a8cab362.zip
Befehle add_user_to_group und delete_user_from_group implementiert
Diffstat (limited to 'src/Common/UserBackend.h')
-rw-r--r--src/Common/UserBackend.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/Common/UserBackend.h b/src/Common/UserBackend.h
index 2e42e12..9eb59d3 100644
--- a/src/Common/UserBackend.h
+++ b/src/Common/UserBackend.h
@@ -113,6 +113,14 @@ class UserBackend {
throw(Core::Exception(Core::Exception::NOT_IMPLEMENTED));
}
+ virtual void addUserToGroup(unsigned long uid _UNUSED_PARAMETER_, unsigned long gid _UNUSED_PARAMETER_) throw(Core::Exception) {
+ throw(Core::Exception(Core::Exception::NOT_IMPLEMENTED));
+ }
+
+ virtual void deleteUserFromGroup(unsigned long uid _UNUSED_PARAMETER_, unsigned long gid _UNUSED_PARAMETER_) throw(Core::Exception) {
+ throw(Core::Exception(Core::Exception::NOT_IMPLEMENTED));
+ }
+
public:
virtual ~UserBackend() {}