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/client/ClientStore.hpp | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'ingen/client/ClientStore.hpp') diff --git a/ingen/client/ClientStore.hpp b/ingen/client/ClientStore.hpp index bd009f94..714bdb2d 100644 --- a/ingen/client/ClientStore.hpp +++ b/ingen/client/ClientStore.hpp @@ -91,13 +91,13 @@ public: const Raul::URI& predicate, const Raul::Atom& value); - void connect(const Raul::Path& src_port_path, - const Raul::Path& dst_port_path); + void connect(const Raul::Path& tail, + const Raul::Path& head); - void disconnect(const Raul::URI& src, - const Raul::URI& dst); + void disconnect(const Raul::Path& tail, + const Raul::Path& head); - void disconnect_all(const Raul::Path& parent_patch_path, + void disconnect_all(const Raul::Path& parent_patch, const Raul::Path& path); void del(const Raul::URI& uri); @@ -122,15 +122,15 @@ private: void add_plugin(SharedPtr plugin); - SharedPtr connection_patch(const Raul::Path& src_port_path, - const Raul::Path& dst_port_path); + SharedPtr connection_patch(const Raul::Path& tail_path, + const Raul::Path& head_path); void bundle_begin() {} void bundle_end() {} // Slots for SigClientInterface signals - bool attempt_connection(const Raul::Path& src_port_path, - const Raul::Path& dst_port_path); + bool attempt_connection(const Raul::Path& tail_path, + const Raul::Path& head_path); SharedPtr _uris; SharedPtr _engine; -- cgit v1.2.1