summaryrefslogtreecommitdiffstats
path: root/src/engine/ClientBroadcaster.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2010-01-29 04:01:29 +0000
committerDavid Robillard <d@drobilla.net>2010-01-29 04:01:29 +0000
commit1b964e850bbe3207fe9a65849520634955d141f0 (patch)
tree8af6d825e666bbe0c97ca8fd3b7c89558e2c32c0 /src/engine/ClientBroadcaster.hpp
parentd5a514148bec58cd7e97d032259362b2e19c0e95 (diff)
downloadingen-1b964e850bbe3207fe9a65849520634955d141f0.tar.gz
ingen-1b964e850bbe3207fe9a65849520634955d141f0.tar.bz2
ingen-1b964e850bbe3207fe9a65849520634955d141f0.zip
Send binding information to client.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2392 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/engine/ClientBroadcaster.hpp')
-rw-r--r--src/engine/ClientBroadcaster.hpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/engine/ClientBroadcaster.hpp b/src/engine/ClientBroadcaster.hpp
index 9de7aeff..fa44bc43 100644
--- a/src/engine/ClientBroadcaster.hpp
+++ b/src/engine/ClientBroadcaster.hpp
@@ -123,6 +123,10 @@ public:
void error(const std::string& msg) { BROADCAST(error, msg); }
void activity(const Raul::Path& path) { BROADCAST(activity, path); }
+ void binding(const Raul::Path& path, const Shared::MessageType& type) {
+ BROADCAST(binding, path, type);
+ }
+
private:
typedef std::map<Raul::URI, Shared::ClientInterface*> Clients;
Clients _clients;