From 766c56a693e8b1bd4293459bb256abdc0515a0b5 Mon Sep 17 00:00:00 2001 From: Matthias Schiffer Date: Tue, 9 Jun 2009 19:01:02 +0200 Subject: Teile der Namespaces Common und Net in den neuen Namespace Core verschoben --- src/Server/UserManager.h | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) (limited to 'src/Server/UserManager.h') diff --git a/src/Server/UserManager.h b/src/Server/UserManager.h index 47c7318..31f50d5 100644 --- a/src/Server/UserManager.h +++ b/src/Server/UserManager.h @@ -23,7 +23,7 @@ #include #include -#include +#include #include #include @@ -57,19 +57,19 @@ class UserManager : boost::noncopyable { backends.erase(backend); } - boost::shared_ptr > getUserList() throw(Net::Exception); - boost::shared_ptr getUserInfo(unsigned long uid) throw(Net::Exception); - boost::shared_ptr getUserInfoByName(const std::string &name) throw(Net::Exception); - boost::shared_ptr > getUserGroupList(unsigned long uid) throw(Net::Exception); + boost::shared_ptr > getUserList() throw(Core::Exception); + boost::shared_ptr getUserInfo(unsigned long uid) throw(Core::Exception); + boost::shared_ptr getUserInfoByName(const std::string &name) throw(Core::Exception); + boost::shared_ptr > getUserGroupList(unsigned long uid) throw(Core::Exception); - boost::shared_ptr > getGroupList() throw(Net::Exception); - std::string getGroupName(unsigned long gid) throw(Net::Exception); - unsigned long getGroupId(const std::string &name) throw(Net::Exception); - boost::shared_ptr > getGroupUserList(unsigned long gid) throw(Net::Exception); + boost::shared_ptr > getGroupList() throw(Core::Exception); + std::string getGroupName(unsigned long gid) throw(Core::Exception); + unsigned long getGroupId(const std::string &name) throw(Core::Exception); + boost::shared_ptr > getGroupUserList(unsigned long gid) throw(Core::Exception); - void setPassword(unsigned long uid, const std::string &password) throw(Net::Exception); + void setPassword(unsigned long uid, const std::string &password) throw(Core::Exception); - void addUser(const Common::UserInfo &userInfo) throw(Net::Exception); + void addUser(const Common::UserInfo &userInfo) throw(Core::Exception); static UserManager *get() { return &userManager; -- cgit v1.2.3