diff options
author | Christian Glöckner <cgloeckner@freenet.de> | 2016-03-29 10:09:18 +0200 |
---|---|---|
committer | André Nusser <andre.nusser@googlemail.com> | 2016-03-31 17:35:47 +0200 |
commit | 0f18336bc2a597f2625a46ea714e838d03e340b2 (patch) | |
tree | 78f328863e70a875ca35db1a64beb18fa7e437cc /drumgizmo/output/wavfile.h | |
parent | 53909b3a74e9c752d3405fda7bc63146b9abdc7a (diff) |
more consistent style of output engines' getters
Diffstat (limited to 'drumgizmo/output/wavfile.h')
-rw-r--r-- | drumgizmo/output/wavfile.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drumgizmo/output/wavfile.h b/drumgizmo/output/wavfile.h index a0019d3..dfe422c 100644 --- a/drumgizmo/output/wavfile.h +++ b/drumgizmo/output/wavfile.h @@ -47,7 +47,7 @@ public: void pre(size_t nsamples) override; void run(int ch, sample_t* samples, size_t nsamples) override; void post(size_t nsamples) override; - size_t samplerate() override; + size_t getSamplerate() const override; private: SF_INFO info; |