summaryrefslogtreecommitdiffstats
path: root/src/Common/UserBackend.h
diff options
context:
space:
mode:
authorMatthias Schiffer <matthias@gamezock.de>2009-07-10 01:37:53 +0200
committerMatthias Schiffer <matthias@gamezock.de>2009-07-10 01:37:53 +0200
commit5bf8b6ce656ffe0740ec116057577044e3925887 (patch)
tree90a7563d5a51b87a82c4fdb8f0a0c8b45ef6e8d0 /src/Common/UserBackend.h
parent1afb432ee5c55181bd918c038d0372479355f04b (diff)
downloadmad-5bf8b6ce656ffe0740ec116057577044e3925887.tar
mad-5bf8b6ce656ffe0740ec116057577044e3925887.zip
UserManager, UserBackend, UserCache: deleteUser und deleteGroup hinzugefügt
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 dfb154c..2e42e12 100644
--- a/src/Common/UserBackend.h
+++ b/src/Common/UserBackend.h
@@ -97,6 +97,10 @@ class UserBackend {
throw(Core::Exception(Core::Exception::NOT_IMPLEMENTED));
}
+ virtual void deleteUser(unsigned long uid _UNUSED_PARAMETER_) throw(Core::Exception) {
+ throw(Core::Exception(Core::Exception::NOT_IMPLEMENTED));
+ }
+
virtual void addGroup(const GroupInfo &groupInfo _UNUSED_PARAMETER_) throw(Core::Exception) {
throw(Core::Exception(Core::Exception::NOT_IMPLEMENTED));
}
@@ -105,6 +109,10 @@ class UserBackend {
throw(Core::Exception(Core::Exception::NOT_IMPLEMENTED));
}
+ virtual void deleteGroup(unsigned long gid _UNUSED_PARAMETER_) throw(Core::Exception) {
+ throw(Core::Exception(Core::Exception::NOT_IMPLEMENTED));
+ }
+
public:
virtual ~UserBackend() {}