summaryrefslogtreecommitdiffstats
path: root/src/libs/engine/events/RequestPluginEvent.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/libs/engine/events/RequestPluginEvent.hpp')
-rw-r--r--src/libs/engine/events/RequestPluginEvent.hpp8
1 files changed, 3 insertions, 5 deletions
diff --git a/src/libs/engine/events/RequestPluginEvent.hpp b/src/libs/engine/events/RequestPluginEvent.hpp
index a4c6cd09..cca43627 100644
--- a/src/libs/engine/events/RequestPluginEvent.hpp
+++ b/src/libs/engine/events/RequestPluginEvent.hpp
@@ -26,9 +26,7 @@ using std::string;
namespace Ingen {
-class Plugin;
-namespace Shared { class ClientInterface; }
-using Shared::ClientInterface;
+class PluginImpl;
/** A request from a client to send the value of a port.
@@ -45,8 +43,8 @@ public:
void post_process();
private:
- string _uri;
- const Plugin* _plugin;
+ const string _uri;
+ const PluginImpl* _plugin;
};