summaryrefslogtreecommitdiffstats
path: root/src/server/DuplexPort.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/server/DuplexPort.cpp')
-rw-r--r--src/server/DuplexPort.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/server/DuplexPort.cpp b/src/server/DuplexPort.cpp
index 256d45b1..fe958e58 100644
--- a/src/server/DuplexPort.cpp
+++ b/src/server/DuplexPort.cpp
@@ -17,7 +17,9 @@
#include "ingen/URIs.hpp"
#include "Buffer.hpp"
+#include "Driver.hpp"
#include "DuplexPort.hpp"
+#include "Engine.hpp"
#include "GraphImpl.hpp"
#include "OutputPort.hpp"
@@ -95,6 +97,12 @@ DuplexPort::inherit_neighbour(const PortImpl* port,
}
}
+void
+DuplexPort::on_property(const Raul::URI& uri, const Atom& value)
+{
+ _bufs.engine().driver()->port_property(_path, uri, value);
+}
+
bool
DuplexPort::get_buffers(BufferFactory& bufs,
Raul::Array<Voice>* voices,