diff options
author | André Nusser <andre.nusser@googlemail.com> | 2019-03-06 09:54:29 +0100 |
---|---|---|
committer | André Nusser <andre.nusser@googlemail.com> | 2019-05-11 14:54:51 +0200 |
commit | a673a209a71b06488df3244903b5b4b7f994451d (patch) | |
tree | 61403df77a0916d52ec1631b515422bfd1082f92 /src/instrument.h | |
parent | 1965889ac953b354763f194cd7ec44932942477d (diff) |
Split sample selection into own class.
Diffstat (limited to 'src/instrument.h')
-rw-r--r-- | src/instrument.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/instrument.h b/src/instrument.h index e4cf481..2cb0813 100644 --- a/src/instrument.h +++ b/src/instrument.h @@ -33,6 +33,7 @@ #include "rangemap.h" // for v1.0 kits #include "powerlist.h" +#include "sample_selection.h" #include "sample.h" #include "versionstr.h" @@ -104,8 +105,8 @@ private: Settings& settings; Random& rand; PowerList powerlist; - std::vector<Choke> chokes; + SampleSelection sample_selection; }; // typedef std::map< std::string, Instrument > Instruments; |