comparison hackday/CannamMidiFileLoader.h @ 25:2a025ea7c793

hackday work to get live midi input, follow the notes, output measure, read measure in with midi file
author Andrew N Robertson <andrew.robertson@eecs.qmul.ac.uk>
date Sat, 03 Dec 2011 21:09:13 +0000
parents 5a11b19906c7
children 9a70d9abdc8b
comparison
equal deleted inserted replaced
24:5a11b19906c7 25:2a025ea7c793
30 30
31 typedef std::vector<int> IntVector; 31 typedef std::vector<int> IntVector;
32 IntVector v; 32 IntVector v;
33 int noteOnIndex; 33 int noteOnIndex;
34 34
35 35 int ticksPerMeasure;
36 void newTimeSignature(int ticks, int numerator, int denominator, midiEventHolder& myMidiEvents);
37 void updateMeasureToTickPosition(int ticks, midiEventHolder& myMidiEvents);
36 bool printMidiInfo; 38 bool printMidiInfo;
39 void printMeasuresSoFar(midiEventHolder& myMidiEvents);
37 40
38 }; 41 };
39 #endif 42 #endif