diff options
author | André Nusser <andre.nusser@googlemail.com> | 2016-07-16 15:46:40 +0200 |
---|---|---|
committer | André Nusser <andre.nusser@googlemail.com> | 2016-07-16 15:46:40 +0200 |
commit | f653c5348904d8debc84f6c0e72d17430579204e (patch) | |
tree | 4f159a08b0b32a12e285630c28af19e80907f1d3 /src/drumgizmo.h | |
parent | 2247c698d8f7dc5725f4d491e798c5147273ca1e (diff) |
Move config io from DrumGizmo to DrumGizmoPlugin (into own class).
Drumkit file and midimap file are now fetched from settings instead of
DrumGizmo members.
Diffstat (limited to 'src/drumgizmo.h')
-rw-r--r-- | src/drumgizmo.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/drumgizmo.h b/src/drumgizmo.h index 8ad77d3..b104772 100644 --- a/src/drumgizmo.h +++ b/src/drumgizmo.h @@ -39,7 +39,6 @@ #include "audiocache.h" #include "mutex.h" #include "chresampler.h" -#include "configfile.h" #include "settings.h" #include "inputprocessor.h" @@ -60,9 +59,6 @@ public: void getSamples(int ch, int pos, sample_t *s, size_t sz); - std::string configString(); - bool setConfigString(std::string cfg); - //! Get the current engine latency in samples. std::size_t getLatency() const; @@ -105,6 +101,5 @@ protected: std::vector<event_t> events; Settings& settings; - SettingsGetter getter{settings}; Random rand; }; |