From 119468f621a59d86da10bedf75c4427b70f9d370 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Fri, 16 Mar 2012 03:15:41 +0000 Subject: Remove activity from interface and use set_property() instead. Move client registration stuff to Engine and remove corresponding events. Simply response ID interface. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4066 a436a847-0d15-0410-975c-d299462d15a1 --- src/bindings/Client.hpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/bindings/Client.hpp') diff --git a/src/bindings/Client.hpp b/src/bindings/Client.hpp index 8a5b99aa..8adb1239 100644 --- a/src/bindings/Client.hpp +++ b/src/bindings/Client.hpp @@ -7,7 +7,7 @@ class Client : public Ingen::ClientInterface { public: /** Wrapper for engine->register_client to appease SWIG */ - virtual void subscribe(Ingen::yServerInterface* engine) { + virtual void subscribe(Ingen::ServerInterface* engine) { engine->register_client(this); } @@ -21,5 +21,4 @@ public: void move(const Raul::Path& old_path, const Raul::Path& new_path) {} void disconnect(const Raul::Path& src_port_path, const Raul::Path& dst_port_path) {} void set_property(const Raul::URI& subject, const Raul::URI& key, const Raul::Atom& value) {} - void activity(const Raul::Path& port_path) {} }; -- cgit v1.2.1