diff options
Diffstat (limited to 'src/libs/engine/events/RequestPortValueEvent.h')
-rw-r--r-- | src/libs/engine/events/RequestPortValueEvent.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libs/engine/events/RequestPortValueEvent.h b/src/libs/engine/events/RequestPortValueEvent.h index f9f14a41..eba37122 100644 --- a/src/libs/engine/events/RequestPortValueEvent.h +++ b/src/libs/engine/events/RequestPortValueEvent.h @@ -37,16 +37,16 @@ using Shared::ClientInterface; class RequestPortValueEvent : public QueuedEvent { public: - RequestPortValueEvent(CountedPtr<Responder> responder, samplecount timestamp, const string& port_path); + RequestPortValueEvent(CountedPtr<Responder> responder, SampleCount timestamp, const string& port_path); void pre_process(); - void execute(samplecount offset); + void execute(SampleCount offset); void post_process(); private: string m_port_path; Port* m_port; - sample m_value; + Sample m_value; CountedPtr<ClientInterface> m_client; }; |