diff options
Diffstat (limited to 'src/engine/events/RequestObjectEvent.hpp')
-rw-r--r-- | src/engine/events/RequestObjectEvent.hpp | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/src/engine/events/RequestObjectEvent.hpp b/src/engine/events/RequestObjectEvent.hpp index 600724b6..67454892 100644 --- a/src/engine/events/RequestObjectEvent.hpp +++ b/src/engine/events/RequestObjectEvent.hpp @@ -24,6 +24,7 @@ namespace Ingen { class GraphObjectImpl; +class PluginImpl; /** A request from a client to send the value of a port. @@ -33,15 +34,20 @@ class GraphObjectImpl; class RequestObjectEvent : public QueuedEvent { public: - RequestObjectEvent(Engine& engine, SharedPtr<Responder> responder, SampleCount timestamp, const Raul::Path& port_path); + RequestObjectEvent( + Engine& engine, + SharedPtr<Responder> responder, + SampleCount timestamp, + const Raul::URI& uri); void pre_process(); void execute(ProcessContext& context); void post_process(); private: - const Raul::Path _path; - GraphObjectImpl* _object; + const Raul::URI _uri; + GraphObjectImpl* _object; + const PluginImpl* _plugin; }; |