From e190d38057892b69246391841b234a368bc2b4ad Mon Sep 17 00:00:00 2001 From: deva Date: Tue, 1 Mar 2011 19:19:02 +0000 Subject: MAJOR rewrite of the internals. New input/output 'plugin' system. Still a lot missing. --- src/channel.h | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) (limited to 'src/channel.h') 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 #include -#include + +#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__*/ -- cgit v1.2.3