summaryrefslogtreecommitdiff
path: root/lv2/input_lv2.h
diff options
context:
space:
mode:
authorBent Bisballe Nyeng <deva@aasimon.org>2013-04-04 21:19:58 +0200
committerBent Bisballe Nyeng <deva@aasimon.org>2013-04-04 21:19:58 +0200
commit77b3943b751bed43d230de6db322a750bfd1fc8e (patch)
treecd7d98bc8c06c660558a52f2b6b6ed73982efdf2 /lv2/input_lv2.h
parent0e436ebcd7faacb557ab94952765cb6bcfd7d259 (diff)
New message system. New common midi input class. Some compiler warning fixes. New ListBoxBasic class used by both LustBox and ComboBox. New embossed font.
Diffstat (limited to 'lv2/input_lv2.h')
-rw-r--r--lv2/input_lv2.h9
1 files changed, 2 insertions, 7 deletions
diff --git a/lv2/input_lv2.h b/lv2/input_lv2.h
index 00e0b51..aa39a23 100644
--- a/lv2/input_lv2.h
+++ b/lv2/input_lv2.h
@@ -27,12 +27,11 @@
#ifndef __DRUMGIZMO_INPUT_LV2_H__
#define __DRUMGIZMO_INPUT_LV2_H__
-#include <audioinputengine.h>
-#include <midimapper.h>
+#include <audioinputenginemidi.h>
#include <lv2/lv2plug.in/ns/ext/event/event-helpers.h>
-class InputLV2 : public AudioInputEngine {
+class InputLV2 : public AudioInputEngineMidi {
public:
InputLV2();
~InputLV2();
@@ -48,12 +47,8 @@ public:
event_t *run(size_t pos, size_t len, size_t *nevents);
void post();
- void loadMidiMap(std::string file);
-
LV2_Event_Buffer *eventPort;
- MidiMapper mmap;
-
private:
Instruments *instruments;
};