diff options
author | David Robillard <d@drobilla.net> | 2009-05-28 18:15:11 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2009-05-28 18:15:11 +0000 |
commit | 8935cca8706d74f39d3cca43b4df3ab48799b06a (patch) | |
tree | 90944dd3367ca3252c391546f88e3e9605dcba80 /src/client/ThreadedSigClientInterface.hpp | |
parent | f2135439b806e9c375f2e8588be23ea53c69832c (diff) | |
download | ingen-8935cca8706d74f39d3cca43b4df3ab48799b06a.tar.gz ingen-8935cca8706d74f39d3cca43b4df3ab48799b06a.tar.bz2 ingen-8935cca8706d74f39d3cca43b4df3ab48799b06a.zip |
Replace new_plugin with put.
Fix default symbol generation (URI chopping).
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2029 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/client/ThreadedSigClientInterface.hpp')
-rw-r--r-- | src/client/ThreadedSigClientInterface.hpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/client/ThreadedSigClientInterface.hpp b/src/client/ThreadedSigClientInterface.hpp index d83e3334..eda3bfb2 100644 --- a/src/client/ThreadedSigClientInterface.hpp +++ b/src/client/ThreadedSigClientInterface.hpp @@ -50,7 +50,6 @@ public: , response_ok_slot(signal_response_ok.make_slot()) , response_error_slot(signal_response_error.make_slot()) , error_slot(signal_error.make_slot()) - , new_plugin_slot(signal_new_plugin.make_slot()) , new_port_slot(signal_new_port.make_slot()) , put_slot(signal_put.make_slot()) , connection_slot(signal_connection.make_slot()) @@ -89,9 +88,6 @@ public: void error(const std::string& msg) { push_sig(sigc::bind(error_slot, msg)); } - void new_plugin(const Raul::URI& uri, const Raul::URI& type_uri, const Raul::Symbol& symbol) - { push_sig(sigc::bind(new_plugin_slot, uri, type_uri, symbol)); } - void put(const Raul::URI& path, const Shared::Resource::Properties& properties) { push_sig(sigc::bind(put_slot, path, properties)); } |