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/drumkit.h | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) (limited to 'src/drumkit.h') diff --git a/src/drumkit.h b/src/drumkit.h index caf1dc2..d79a3e4 100644 --- a/src/drumkit.h +++ b/src/drumkit.h @@ -30,23 +30,14 @@ #include #include -#include "sample.h" -#include "instrument.h" #include "channel.h" - -typedef std::map< std::string, Channel* > Channels; -typedef std::map< std::string, Sample* > Samples; - -typedef unsigned int midi_note_t; -typedef std::map< midi_note_t, Instrument* > Instruments; +#include "instrument.h" +#include "midimap.h" class DrumKit { public: std::string name; std::string description; - - Channels channels; - Samples samples; Instruments instruments; }; -- cgit v1.2.3