diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2015-07-27 19:36:28 +0200 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2015-07-27 19:36:28 +0200 |
commit | ec4eb3f535c358e67eb9ae0989b2163b20728d0b (patch) | |
tree | 40fc11923a6e07fc957210b3c0c53b6301a74d97 /src/drumgizmo.h | |
parent | cc9b5ff6d194dc8ead042c5d129ea07e8e68382d (diff) |
Add free-wheel mode to LV2 and DrumGizmo class.
Diffstat (limited to 'src/drumgizmo.h')
-rw-r--r-- | src/drumgizmo.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/drumgizmo.h b/src/drumgizmo.h index 4c0740e..041ca35 100644 --- a/src/drumgizmo.h +++ b/src/drumgizmo.h @@ -77,6 +77,8 @@ public: void setFrameSize(size_t framesize); + void setFreeWheel(bool freewheel); + private: DrumKitLoader loader; @@ -98,4 +100,5 @@ private: DrumKit kit; size_t framesize; + bool freewheel; }; |