annotate DrumTimingLoader_OF/src/DrumTimingLoader.h @ 1:106bc2d4f702

added timing analyser file
author Andrew N Robertson <andrew.robertson@eecs.qmul.ac.uk>
date Sat, 23 Nov 2013 15:44:47 +0000
parents 82352cfc0b23
children 50ba55abea8c
rev   line source
andrew@0 1 /*
andrew@0 2 * DrumTimingLoader.h
andrew@0 3 * DrumTimingLoader
andrew@0 4 *
andrew@0 5 * Created by Andrew on 09/08/2012.
andrew@0 6 * Copyright 2012 QMUL. All rights reserved.
andrew@0 7 *file://localhost/Users/andrew/Dropbox/DrumTiming/DrumTimingLoader_OF/PerformanceAnalyserSrc/
andrew@0 8 */
andrew@0 9
andrew@0 10 #ifndef DRUM_TIMING_LOADER
andrew@0 11 #define DRUM_TIMING_LOADER
andrew@0 12
andrew@0 13 #include "RecordedMultipleAudio.h"
andrew@0 14
andrew@0 15 // basic file operations for text file stuff
andrew@0 16 #include <iostream>
andrew@0 17 #include <fstream>
andrew@0 18 using namespace std;
andrew@0 19
andrew@0 20
andrew@0 21 class DrumTimingLoader{
andrew@0 22
andrew@0 23 public:
andrew@0 24 DrumTimingLoader();
andrew@0 25 void initialise();
andrew@0 26 void draw();
andrew@0 27 void windowResized(int w, int h);
andrew@0 28 RecordedMultipleAudio recordedTracks;
andrew@0 29
andrew@0 30 };
andrew@0 31 #endif