summaryrefslogtreecommitdiffstats
path: root/src/Server/UserBackend.h
diff options
context:
space:
mode:
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;