summaryrefslogtreecommitdiffstats
path: root/src/engine/events/Get.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2010-02-26 06:01:18 +0000
committerDavid Robillard <d@drobilla.net>2010-02-26 06:01:18 +0000
commit678139141fe306dd721c799b23af56111eaae37f (patch)
treecf53b8f4b5dcff71ca3e4230c62646ad50783ce2 /src/engine/events/Get.hpp
parentfe61806905a86e7513df64d59ec8b4d31f184a33 (diff)
downloadingen-678139141fe306dd721c799b23af56111eaae37f.tar.gz
ingen-678139141fe306dd721c799b23af56111eaae37f.tar.bz2
ingen-678139141fe306dd721c799b23af56111eaae37f.zip
Remove request_plugins from EngineInterface (and RequestPlugins event from engine), replacing with get of magic URI "ingen:plugins".
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2504 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/engine/events/Get.hpp')
-rw-r--r--src/engine/events/Get.hpp9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/engine/events/Get.hpp b/src/engine/events/Get.hpp
index 2abae3a4..3592cd27 100644
--- a/src/engine/events/Get.hpp
+++ b/src/engine/events/Get.hpp
@@ -19,6 +19,7 @@
#define INGEN_EVENTS_GET_HPP
#include "QueuedEvent.hpp"
+#include "NodeFactory.hpp"
#include "types.hpp"
namespace Ingen {
@@ -43,13 +44,13 @@ public:
const Raul::URI& uri);
void pre_process();
- void execute(ProcessContext& context);
void post_process();
private:
- const Raul::URI _uri;
- GraphObjectImpl* _object;
- const PluginImpl* _plugin;
+ const Raul::URI _uri;
+ GraphObjectImpl* _object;
+ const PluginImpl* _plugin;
+ NodeFactory::Plugins _plugins;
};