From 927b169eb1787bc40ede591c7c7893a39b488d95 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sat, 28 Apr 2012 02:25:35 +0000 Subject: Use "tail" and "head" terminology instead of "src_port" and "dst_port". Use the same types for connect() and disconnect() parameters. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4292 a436a847-0d15-0410-975c-d299462d15a1 --- ingen/Interface.hpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'ingen/Interface.hpp') diff --git a/ingen/Interface.hpp b/ingen/Interface.hpp index c1472e5e..0a3411a1 100644 --- a/ingen/Interface.hpp +++ b/ingen/Interface.hpp @@ -59,13 +59,13 @@ public: virtual void del(const Raul::URI& uri) = 0; - virtual void connect(const Raul::Path& src_port_path, - const Raul::Path& dst_port_path) = 0; + virtual void connect(const Raul::Path& tail, + const Raul::Path& head) = 0; - virtual void disconnect(const Raul::URI& src, - const Raul::URI& dst) = 0; + virtual void disconnect(const Raul::Path& tail, + const Raul::Path& head) = 0; - virtual void disconnect_all(const Raul::Path& parent_patch_path, + virtual void disconnect_all(const Raul::Path& parent_patch, const Raul::Path& path) = 0; virtual void set_property(const Raul::URI& subject, -- cgit v1.2.1