summaryrefslogtreecommitdiffstats
path: root/src/libs/gui/NewSubpatchWindow.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2007-10-07 19:00:30 +0000
committerDavid Robillard <d@drobilla.net>2007-10-07 19:00:30 +0000
commit2cb36f0265a391388b6edf988d919911b79aca4d (patch)
tree7b796835325e84e152365104b4c23bf4109f2293 /src/libs/gui/NewSubpatchWindow.hpp
parent299f075679fc7ea6a67001c2cc0442511e167cbc (diff)
downloadingen-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/NewSubpatchWindow.hpp')
-rw-r--r--src/libs/gui/NewSubpatchWindow.hpp9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/libs/gui/NewSubpatchWindow.hpp b/src/libs/gui/NewSubpatchWindow.hpp
index d6ce65d7..d8fbde88 100644
--- a/src/libs/gui/NewSubpatchWindow.hpp
+++ b/src/libs/gui/NewSubpatchWindow.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 {
@@ -43,15 +44,15 @@ public:
void set_patch(SharedPtr<PatchModel> patch);
- void present(SharedPtr<PatchModel> patch, MetadataMap data);
+ void present(SharedPtr<PatchModel> patch, GraphObject::MetadataMap data);
private:
void name_changed();
void ok_clicked();
void cancel_clicked();
- MetadataMap _initial_data;
- SharedPtr<PatchModel> _patch;
+ GraphObject::MetadataMap _initial_data;
+ SharedPtr<PatchModel> _patch;
Gtk::Entry* _name_entry;
Gtk::Label* _message_label;