diff options
Diffstat (limited to 'src/libs/engine/events/RequestPluginsEvent.hpp')
-rw-r--r-- | src/libs/engine/events/RequestPluginsEvent.hpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/libs/engine/events/RequestPluginsEvent.hpp b/src/libs/engine/events/RequestPluginsEvent.hpp index 489478e4..92a042f9 100644 --- a/src/libs/engine/events/RequestPluginsEvent.hpp +++ b/src/libs/engine/events/RequestPluginsEvent.hpp @@ -26,7 +26,7 @@ using std::string; namespace Ingen { class Plugin; -class Shared::Responder; +class Responder; namespace Shared { class ClientInterface; } using Shared::ClientInterface; @@ -39,13 +39,12 @@ namespace Shared { class RequestPluginsEvent : public QueuedEvent { public: - RequestPluginsEvent(Engine& engine, SharedPtr<Shared::Responder> responder, SampleCount timestamp); + RequestPluginsEvent(Engine& engine, SharedPtr<Responder> responder, SampleCount timestamp); void pre_process(); void post_process(); private: - ClientInterface* _client; std::list<Plugin*> _plugins; }; |