diff options
Diffstat (limited to 'ingen/client/PluginUI.hpp')
-rw-r--r-- | ingen/client/PluginUI.hpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/ingen/client/PluginUI.hpp b/ingen/client/PluginUI.hpp index 12e970bf..1857d3e2 100644 --- a/ingen/client/PluginUI.hpp +++ b/ingen/client/PluginUI.hpp @@ -1,6 +1,6 @@ /* This file is part of Ingen. - Copyright 2007-2012 David Robillard <http://drobilla.net/> + Copyright 2007-2013 David Robillard <http://drobilla.net/> Ingen is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free @@ -17,6 +17,8 @@ #ifndef INGEN_CLIENT_PLUGINUI_HPP #define INGEN_CLIENT_PLUGINUI_HPP +#include <set> + #include "ingen/types.hpp" #include "lilv/lilv.h" @@ -67,6 +69,7 @@ private: SPtr<const BlockModel> _block; SuilInstance* _instance; LilvNode* _ui_node; + std::set<uint32_t> _subscribed_ports; static SuilHost* ui_host; |