diff options
author | David Robillard <d@drobilla.net> | 2007-10-07 19:00:30 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2007-10-07 19:00:30 +0000 |
commit | 2cb36f0265a391388b6edf988d919911b79aca4d (patch) | |
tree | 7b796835325e84e152365104b4c23bf4109f2293 /src/libs/gui/LoadRemotePatchWindow.hpp | |
parent | 299f075679fc7ea6a67001c2cc0442511e167cbc (diff) | |
download | ingen-2cb36f0265a391388b6edf988d919911b79aca4d.tar.gz ingen-2cb36f0265a391388b6edf988d919911b79aca4d.tar.bz2 ingen-2cb36f0265a391388b6edf988d919911b79aca4d.zip |
Begin using shared virtual Node interface client side.
git-svn-id: http://svn.drobilla.net/lad/ingen@836 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/libs/gui/LoadRemotePatchWindow.hpp')
-rw-r--r-- | src/libs/gui/LoadRemotePatchWindow.hpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/libs/gui/LoadRemotePatchWindow.hpp b/src/libs/gui/LoadRemotePatchWindow.hpp index 2afef975..59b037d2 100644 --- a/src/libs/gui/LoadRemotePatchWindow.hpp +++ b/src/libs/gui/LoadRemotePatchWindow.hpp @@ -21,10 +21,11 @@ #include <libglademm/xml.h> #include <gtkmm.h> #include <raul/SharedPtr.hpp> +#include "interface/GraphObject.hpp" #include "client/PatchModel.hpp" #include "client/PluginModel.hpp" +using namespace Ingen::Shared; using Ingen::Client::PatchModel; -using Ingen::Client::MetadataMap; namespace Ingen { namespace GUI { @@ -62,7 +63,7 @@ public: void set_replace() { _replace = true; } void set_merge() { _replace = false; } - void present(SharedPtr<PatchModel> patch, MetadataMap data); + void present(SharedPtr<PatchModel> patch, GraphObject::MetadataMap data); private: void patch_activated(const Gtk::TreeModel::Path& path, Gtk::TreeViewColumn* col); @@ -71,7 +72,7 @@ private: void open_clicked(); void cancel_clicked(); - MetadataMap _initial_data; + GraphObject::MetadataMap _initial_data; SharedPtr<PatchModel> _patch; bool _replace; |