From fc3c50063f659584b2145addab8236a479a031b7 Mon Sep 17 00:00:00 2001 From: Matthias Schiffer Date: Mon, 18 May 2009 19:53:51 +0200 Subject: Von sigc++ auf boost-signals migriert --- src/Server/UserManager.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/Server/UserManager.h') diff --git a/src/Server/UserManager.h b/src/Server/UserManager.h index 3c4097b..d0e7074 100644 --- a/src/Server/UserManager.h +++ b/src/Server/UserManager.h @@ -25,7 +25,7 @@ #include #include -#include +#include namespace Mad { namespace Server { @@ -54,12 +54,12 @@ class UserManager { } - bool getUserList(const sigc::slot& > &callback); - bool getUserInfo(unsigned long uid, const sigc::slot &callback); + bool getUserList(const boost::function1& > &callback); + bool getUserInfo(unsigned long uid, const boost::function1 &callback); - bool setPassword(unsigned long uid, const std::string &password, const sigc::slot &callback); + bool setPassword(unsigned long uid, const std::string &password, const boost::function1 &callback); - bool addUser(const Common::UserInfo &userInfo, const sigc::slot &callback); + bool addUser(const Common::UserInfo &userInfo, const boost::function1 &callback); static UserManager *get() { -- cgit v1.2.3