diff options
Diffstat (limited to 'drumgizmo/output/outputdummy.cc')
-rw-r--r-- | drumgizmo/output/outputdummy.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drumgizmo/output/outputdummy.cc b/drumgizmo/output/outputdummy.cc index 2edcc28..4ff0816 100644 --- a/drumgizmo/output/outputdummy.cc +++ b/drumgizmo/output/outputdummy.cc @@ -34,12 +34,12 @@ DummyOutputEngine::~DummyOutputEngine() { } -bool DummyOutputEngine::init(Channels data) +bool DummyOutputEngine::init(const Channels& data) { return true; } -void DummyOutputEngine::setParm(std::string parm, std::string value) +void DummyOutputEngine::setParm(const std::string& parm, const std::string& value) { } |