summaryrefslogtreecommitdiffstats
path: root/src/server/DirectDriver.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/server/DirectDriver.hpp')
-rw-r--r--src/server/DirectDriver.hpp17
1 files changed, 7 insertions, 10 deletions
diff --git a/src/server/DirectDriver.hpp b/src/server/DirectDriver.hpp
index b3d49af0..5f177403 100644
--- a/src/server/DirectDriver.hpp
+++ b/src/server/DirectDriver.hpp
@@ -60,23 +60,20 @@ public:
return nullptr;
}
- void add_port(RunContext& context, EnginePort* port) override {
+ void add_port(RunContext&, EnginePort* port) override {
_ports.push_back(*port);
}
- void remove_port(RunContext& context, EnginePort* port) override {
+ void remove_port(RunContext&, EnginePort* port) override {
_ports.erase(_ports.iterator_to(*port));
}
- void rename_port(const Raul::Path& old_path,
- const Raul::Path& new_path) override {}
+ void rename_port(const Raul::Path&, const Raul::Path&) override {}
- void port_property(const Raul::Path& path,
- const URI& uri,
- const Atom& value) override {}
+ void port_property(const Raul::Path&, const URI&, const Atom&) override {}
- void register_port(EnginePort& port) override {}
- void unregister_port(EnginePort& port) override {}
+ void register_port(EnginePort&) override {}
+ void unregister_port(EnginePort&) override {}
SampleCount block_length() const override { return _block_length; }
@@ -88,7 +85,7 @@ public:
return _engine.run_context().start();
}
- void append_time_events(RunContext& context, Buffer& buffer) override {}
+ void append_time_events(RunContext&, Buffer&) override {}
int real_time_priority() override { return 60; }