diff options
Diffstat (limited to 'src/channel.h')
-rw-r--r-- | src/channel.h | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/src/channel.h b/src/channel.h index 4c512d5..7aadc3c 100644 --- a/src/channel.h +++ b/src/channel.h @@ -27,15 +27,21 @@ #ifndef __DRUMGIZMO_CHANNEL_H__ #define __DRUMGIZMO_CHANNEL_H__ +#include <vector> #include <string> -#include <jack/jack.h> + +#include "audio.h" class Channel { public: - Channel(std::string name); + Channel(std::string name = ""); std::string name; - jack_port_t *port; + channel_t num; }; +typedef Channel InstrumentChannel; + +typedef std::vector< Channel > Channels; + #endif/*__DRUMGIZMO_CHANNEL_H__*/ |