diff options
author | deva <deva> | 2008-07-25 11:28:27 +0000 |
---|---|---|
committer | deva <deva> | 2008-07-25 11:28:27 +0000 |
commit | ef523065eb5e9535d0bd4b3ede820a231e547930 (patch) | |
tree | 0ca39caf972f9c5a2e721e9ea9a42709c3f94291 /src/jackclient.h | |
parent | 8c0e853723666df7696e4e52cac4522336141125 (diff) |
First primitive beatdetection in place.
Diffstat (limited to 'src/jackclient.h')
-rw-r--r-- | src/jackclient.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/jackclient.h b/src/jackclient.h index 8efa654..21e1615 100644 --- a/src/jackclient.h +++ b/src/jackclient.h @@ -36,6 +36,7 @@ #include "event.h" #include "sample.h" #include "midimapper.h" +#include "beatmapper.h" typedef std::vector< jack_port_t *> Ports; @@ -59,7 +60,7 @@ public: private: jack_client_t *jack_client; - Ports input_ports; + // Ports input_ports; Ports output_ports; jack_port_t *midi_port; @@ -68,6 +69,7 @@ private: DrumKit *drumkit; MidiMapper midimapper; + std::vector< BeatMapper* > beatmappers; }; #endif/*__DRUMGIZMO_JACKCLIENT_H__*/ |