diff options
author | David Robillard <d@drobilla.net> | 2009-11-14 20:44:40 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2009-11-14 20:44:40 +0000 |
commit | 6ae2018e81e7e81e4906e62dc6224ad34298d9c2 (patch) | |
tree | 11286438977c4f975b5148dc93b5f4dfafabdbdc /src/client/PluginUI.hpp | |
parent | cfec427867f42d7aa7bea6dfbb0736b5ce99e9e2 (diff) | |
download | ingen-6ae2018e81e7e81e4906e62dc6224ad34298d9c2.tar.gz ingen-6ae2018e81e7e81e4906e62dc6224ad34298d9c2.tar.bz2 ingen-6ae2018e81e7e81e4906e62dc6224ad34298d9c2.zip |
Object extension.
Port resize extension.
Sensible extension(s) implementation design for Ingen.
Replace string port extension support in Ingen with Object port extension.
Implement port resize extension in Ingen.
Some test plugins for this stuff.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2260 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/client/PluginUI.hpp')
-rw-r--r-- | src/client/PluginUI.hpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/client/PluginUI.hpp b/src/client/PluginUI.hpp index d74d0b72..15071433 100644 --- a/src/client/PluginUI.hpp +++ b/src/client/PluginUI.hpp @@ -21,6 +21,7 @@ #include "slv2/slv2.h" #include "raul/SharedPtr.hpp" #include "module/World.hpp" +#include "LV2Features.hpp" namespace Ingen { namespace Shared { class EngineInterface; } @@ -54,6 +55,8 @@ private: Ingen::Shared::World* _world; SharedPtr<NodeModel> _node; SLV2UIInstance _instance; + + SharedPtr<Shared::LV2Features::FeatureArray> _features; }; |