summaryrefslogtreecommitdiff
path: root/src/drumgizmo.h
diff options
context:
space:
mode:
authorAndré Nusser <andre.nusser@googlemail.com>2016-04-23 22:53:40 +0200
committerAndré Nusser <andre.nusser@googlemail.com>2016-04-24 23:20:44 +0200
commit6f550da7b91c1ff1d5acbee1112adf4a16e36a47 (patch)
tree0c1c9d41109888ac801ef5cb46fab7820b4d48b8 /src/drumgizmo.h
parent32463cb2f19c0f1af4edddb396f9ea0abf5147e5 (diff)
Move input processing of drumgizmo.cc into own class.
Diffstat (limited to 'src/drumgizmo.h')
-rw-r--r--src/drumgizmo.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/drumgizmo.h b/src/drumgizmo.h
index 13c657d..3e734b5 100644
--- a/src/drumgizmo.h
+++ b/src/drumgizmo.h
@@ -41,6 +41,7 @@
#include "chresampler.h"
#include "configfile.h"
#include "settings.h"
+#include "inputprocessor.h"
#define REFSFILE "refs.conf"
@@ -80,7 +81,6 @@ protected:
DrumKitLoader loader;
Mutex mutex;
- bool is_stopping; ///< Is set to true when a TYPE_STOP event has been seen.
AudioOutputEngine *oe;
AudioInputEngine *ie;
@@ -96,6 +96,7 @@ protected:
AudioCache audioCache;
DrumKit kit;
MemChecker memchecker;
+ InputProcessor input_processor;
size_t framesize;
bool freewheel;