diff options
author | Christian Glöckner <cgloeckner@freenet.de> | 2016-03-29 10:02:10 +0200 |
---|---|---|
committer | André Nusser <andre.nusser@googlemail.com> | 2016-03-31 17:35:47 +0200 |
commit | 53909b3a74e9c752d3405fda7bc63146b9abdc7a (patch) | |
tree | 9f95c3666b5209021cb4d5a076693e1290a56be6 /drumgizmo/output/outputdummy.h | |
parent | 9a61e61db6d811c32a25beec8c34e790170662e0 (diff) |
pass channels to output engine by const ref
Diffstat (limited to 'drumgizmo/output/outputdummy.h')
-rw-r--r-- | drumgizmo/output/outputdummy.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drumgizmo/output/outputdummy.h b/drumgizmo/output/outputdummy.h index caa9e5f..5a1b2fa 100644 --- a/drumgizmo/output/outputdummy.h +++ b/drumgizmo/output/outputdummy.h @@ -35,7 +35,7 @@ public: ~DummyOutputEngine(); // based on AudioOutputEngine - bool init(Channels chan) override; + bool init(const Channels& chan) override; void setParm(const std::string& parm, const std::string& value) override; bool start() override; void stop() override; |