summaryrefslogtreecommitdiff
path: root/lv2/input_lv2.h
diff options
context:
space:
mode:
authorBent Bisballe Nyeng <deva@aasimon.org>2012-01-23 20:37:57 +0100
committerBent Bisballe Nyeng <deva@aasimon.org>2012-01-23 20:37:57 +0100
commit8cd3f1729a417d933744cf64e2adf78dc07e265c (patch)
tree8d677dced9b5efcb670dd3b04d7426a56e1ff96d /lv2/input_lv2.h
parent4a4d0a84bb1b80555052f59c1a4addc870ce5fda (diff)
Make plugin store its state. Connect state and GUI (and use GUI)
Diffstat (limited to 'lv2/input_lv2.h')
-rw-r--r--lv2/input_lv2.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/lv2/input_lv2.h b/lv2/input_lv2.h
index 73f242a..d6d4727 100644
--- a/lv2/input_lv2.h
+++ b/lv2/input_lv2.h
@@ -48,9 +48,14 @@ 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;
};
#endif/*__DRUMGIZMO_INPUT_LV2_H__*/