summaryrefslogtreecommitdiffstats
path: root/src/libs/engine/events/RequestPortValueEvent.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/libs/engine/events/RequestPortValueEvent.hpp')
-rw-r--r--src/libs/engine/events/RequestPortValueEvent.hpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/libs/engine/events/RequestPortValueEvent.hpp b/src/libs/engine/events/RequestPortValueEvent.hpp
index d3bccfdc..dd52c535 100644
--- a/src/libs/engine/events/RequestPortValueEvent.hpp
+++ b/src/libs/engine/events/RequestPortValueEvent.hpp
@@ -26,7 +26,7 @@ using std::string;
namespace Ingen {
-class Port;
+class PortImpl;
namespace Shared { class ClientInterface; }
using Shared::ClientInterface;
@@ -45,9 +45,9 @@ public:
void post_process();
private:
- string _port_path;
- Port* _port;
- Sample _value;
+ const string _port_path;
+ PortImpl* _port;
+ Sample _value;
};