From 5bf8b6ce656ffe0740ec116057577044e3925887 Mon Sep 17 00:00:00 2001 From: Matthias Schiffer Date: Fri, 10 Jul 2009 01:37:53 +0200 Subject: =?UTF-8?q?UserManager,=20UserBackend,=20UserCache:=20deleteUser?= =?UTF-8?q?=20und=20deleteGroup=20hinzugef=C3=BCgt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/Common/UserBackend.h | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'src/Common/UserBackend.h') 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() {} -- cgit v1.2.3