summaryrefslogtreecommitdiffstats
path: root/src/server/ClientBroadcaster.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/server/ClientBroadcaster.hpp')
-rw-r--r--src/server/ClientBroadcaster.hpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/server/ClientBroadcaster.hpp b/src/server/ClientBroadcaster.hpp
index c34bb34b..3d49dc4a 100644
--- a/src/server/ClientBroadcaster.hpp
+++ b/src/server/ClientBroadcaster.hpp
@@ -119,7 +119,11 @@ public:
void response_error(int32_t id, const std::string& msg) {} ///< N/A
void error(const std::string& msg) { BROADCAST(error, msg); }
- void activity(const Raul::Path& path) { BROADCAST(activity, path); }
+
+ void activity(const Raul::Path& path,
+ const Raul::Atom& value) {
+ BROADCAST(activity, path, value);
+ }
private:
typedef std::map<Raul::URI, ClientInterface*> Clients;