summaryrefslogtreecommitdiffstats
path: root/src/libs/engine/events/RequestPluginsEvent.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/libs/engine/events/RequestPluginsEvent.hpp')
-rw-r--r--src/libs/engine/events/RequestPluginsEvent.hpp11
1 files changed, 2 insertions, 9 deletions
diff --git a/src/libs/engine/events/RequestPluginsEvent.hpp b/src/libs/engine/events/RequestPluginsEvent.hpp
index ae6a77a9..f6b41d7a 100644
--- a/src/libs/engine/events/RequestPluginsEvent.hpp
+++ b/src/libs/engine/events/RequestPluginsEvent.hpp
@@ -18,19 +18,12 @@
#ifndef REQUESTPLUGINSEVENT_H
#define REQUESTPLUGINSEVENT_H
-#include <string>
-#include <list>
#include "QueuedEvent.hpp"
-using std::string;
+#include "NodeFactory.hpp"
namespace Ingen {
-class PluginImpl;
class Responder;
-namespace Shared {
- class ClientInterface;
-} using Shared::ClientInterface;
-
/** A request from a client to send notification of all objects (ie refresh).
*
@@ -45,7 +38,7 @@ public:
void post_process();
private:
- std::list<PluginImpl*> _plugins;
+ NodeFactory::Plugins _plugins;
};