From 14401d11e598651e7caf39cce884362e58ef5941 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 17 Aug 2008 23:00:34 +0000 Subject: Copy/paste of connections. git-svn-id: http://svn.drobilla.net/lad/ingen@1426 a436a847-0d15-0410-975c-d299462d15a1 --- src/libs/client/ClientStore.hpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src/libs/client/ClientStore.hpp') diff --git a/src/libs/client/ClientStore.hpp b/src/libs/client/ClientStore.hpp index 4b4d9742..d904a3e3 100644 --- a/src/libs/client/ClientStore.hpp +++ b/src/libs/client/ClientStore.hpp @@ -79,6 +79,9 @@ public: void set_voice_value(const string& port_path, uint32_t voice, const Raul::Atom& value); void connect(const string& src_port_path, const string& dst_port_path); void disconnect(const string& src_port_path, const string& dst_port_path); + + typedef list< std::pair > ConnectionRecords; + const ConnectionRecords& connection_records() { return _connection_orphans; } sigc::signal > signal_new_object; sigc::signal > signal_new_plugin; @@ -138,7 +141,7 @@ private: Raul::PathTable > > _variable_orphans; /** Ditto */ - list > _connection_orphans; + ConnectionRecords _connection_orphans; }; -- cgit v1.2.1