#ifndef __PART_H__ #define __PART_H__ #include #include #include "voicemanager.h" #include "voice.h" #include "preset.h" class Part { public: VoiceManager* voiceManager; Voice::Settings settings; float pitchBend; float modulation; std::map notes; void loadPreset(Preset* preset); void noteOn(int note, int vel); void noteOff(int note); void control(int cc, int val); float tick() { return 0; } }; #endif