diff options
author | David Robillard <d@drobilla.net> | 2015-02-09 21:37:31 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2015-02-09 21:37:31 +0000 |
commit | 9cde188fcb8cc7ff30f28ec898d72ce1575496ca (patch) | |
tree | 61fa3c3b5bb85428501868a6d2764b655db35ba2 /ingen | |
parent | 971a4e484757c083c9daa68a4a3e235a549ab523 (diff) | |
download | ingen-9cde188fcb8cc7ff30f28ec898d72ce1575496ca.tar.gz ingen-9cde188fcb8cc7ff30f28ec898d72ce1575496ca.tar.bz2 ingen-9cde188fcb8cc7ff30f28ec898d72ce1575496ca.zip |
Fix broadcasting to several clients.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5550 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'ingen')
-rw-r--r-- | ingen/EngineBase.hpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/ingen/EngineBase.hpp b/ingen/EngineBase.hpp index ec6cee89..1b44e89d 100644 --- a/ingen/EngineBase.hpp +++ b/ingen/EngineBase.hpp @@ -99,13 +99,12 @@ public: /** Register a client to receive updates about engine changes. */ - virtual void register_client(const Raul::URI& uri, - SPtr<Interface> client) = 0; + virtual void register_client(SPtr<Interface> client) = 0; /** Unregister a client. */ - virtual bool unregister_client(const Raul::URI& uri) = 0; + virtual bool unregister_client(SPtr<Interface> client) = 0; }; |