From 9cde188fcb8cc7ff30f28ec898d72ce1575496ca Mon Sep 17 00:00:00 2001 From: David Robillard Date: Mon, 9 Feb 2015 21:37:31 +0000 Subject: Fix broadcasting to several clients. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5550 a436a847-0d15-0410-975c-d299462d15a1 --- ingen/EngineBase.hpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'ingen') 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 client) = 0; + virtual void register_client(SPtr client) = 0; /** Unregister a client. */ - virtual bool unregister_client(const Raul::URI& uri) = 0; + virtual bool unregister_client(SPtr client) = 0; }; -- cgit v1.2.1