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/ClientStore.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/ClientStore.hpp')
-rw-r--r-- | src/client/ClientStore.hpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/client/ClientStore.hpp b/src/client/ClientStore.hpp index 00069701..53cb4a59 100644 --- a/src/client/ClientStore.hpp +++ b/src/client/ClientStore.hpp @@ -67,7 +67,6 @@ public: void set_plugins(SharedPtr<Plugins> p) { _plugins = p; } // CommonInterface - void new_plugin(const Raul::URI& uri, const Raul::URI& type_uri, const Raul::Symbol& symbol); bool new_object(const Shared::GraphObject* object); void put(const Raul::URI& path, const Shared::Resource::Properties& properties); void move(const Raul::Path& old_path, const Raul::Path& new_path); @@ -78,8 +77,8 @@ public: void disconnect(const Raul::Path& src_port_path, const Raul::Path& dst_port_path); void del(const Raul::Path& path); - sigc::signal<void, SharedPtr<ObjectModel> > signal_new_object; - sigc::signal<void, SharedPtr<PluginModel> > signal_new_plugin; + sigc::signal< void, SharedPtr<ObjectModel> > signal_new_object; + sigc::signal< void, SharedPtr<PluginModel> > signal_new_plugin; private: |