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/Common/SystemBackend.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/Common/SystemBackend.h') diff --git a/src/Common/SystemBackend.h b/src/Common/SystemBackend.h index 9c3eaa2..ed553c2 100644 --- a/src/Common/SystemBackend.h +++ b/src/Common/SystemBackend.h @@ -31,27 +31,27 @@ class SystemBackend { protected: friend class SystemManager; - virtual bool getUptimeInfo(const sigc::slot &callback _UNUSED_PARAMETER_) { + virtual bool getUptimeInfo(const boost::function2 &callback _UNUSED_PARAMETER_) { return false; } - virtual bool getMemoryInfo(const sigc::slot &callback _UNUSED_PARAMETER_) { + virtual bool getMemoryInfo(const boost::function4 &callback _UNUSED_PARAMETER_) { return false; } - virtual bool getLoadInfo(const sigc::slot &callback _UNUSED_PARAMETER_) { + virtual bool getLoadInfo(const boost::function5 &callback _UNUSED_PARAMETER_) { return false; } - virtual bool getFSInfo(const sigc::slot& > &callback _UNUSED_PARAMETER_) { + virtual bool getFSInfo(const boost::function1& > &callback _UNUSED_PARAMETER_) { return false; } - virtual bool shutdown(const sigc::slot &callback _UNUSED_PARAMETER_) { + virtual bool shutdown(const boost::function0 &callback _UNUSED_PARAMETER_) { return false; } - virtual bool reboot(const sigc::slot &callback _UNUSED_PARAMETER_) { + virtual bool reboot(const boost::function0 &callback _UNUSED_PARAMETER_) { return false; } -- cgit v1.2.3