summaryrefslogtreecommitdiffstats
path: root/src/Server/UserBackend.h
diff options
context:
space:
mode:
authorMatthias Schiffer <matthias@gamezock.de>2009-05-22 00:23:59 +0200
committerMatthias Schiffer <matthias@gamezock.de>2009-05-22 00:23:59 +0200
commit264cd7947d7291f78065f12824523ba6178a9936 (patch)
tree7261b9a33519cd783f614b147c44f484a1217618 /src/Server/UserBackend.h
parente0e254548b6200d16bc3f4be3bd255b041a76532 (diff)
downloadmad-264cd7947d7291f78065f12824523ba6178a9936.tar
mad-264cd7947d7291f78065f12824523ba6178a9936.zip
GroupListRequest hinzugef?gt
Diffstat (limited to 'src/Server/UserBackend.h')
-rw-r--r--src/Server/UserBackend.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/Server/UserBackend.h b/src/Server/UserBackend.h
index a673fa9..6d59615 100644
--- a/src/Server/UserBackend.h
+++ b/src/Server/UserBackend.h
@@ -23,6 +23,7 @@
#include <config.h>
#include <Common/UserInfo.h>
+#include <Common/GroupInfo.h>
#include <map>
#include <string>
@@ -49,6 +50,10 @@ class UserBackend {
return boost::shared_ptr<Common::UserInfo>();
}
+ virtual boost::shared_ptr<std::map<unsigned long, Common::GroupInfo> > getGroupList() {
+ return boost::shared_ptr<std::map<unsigned long, Common::GroupInfo> >();
+ }
+
// TODO Better interface...
virtual bool setPassword(unsigned long uid _UNUSED_PARAMETER_, const std::string &password _UNUSED_PARAMETER_) {
return false;