annotate DrumTimingLoader_OF/src/DrumTimingLoader.h @ 2:50ba55abea8c

updating files to newer version
author Andrew N Robertson <andrew.robertson@eecs.qmul.ac.uk>
date Sat, 23 Nov 2013 15:49:27 +0000
parents 82352cfc0b23
children
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@2 20 //just stores recordedTracks
andrew@2 21
andrew@0 22
andrew@0 23 class DrumTimingLoader{
andrew@0 24
andrew@0 25 public:
andrew@0 26 DrumTimingLoader();
andrew@0 27 void initialise();
andrew@2 28 void update();
andrew@0 29 void draw();
andrew@0 30 void windowResized(int w, int h);
andrew@0 31 RecordedMultipleAudio recordedTracks;
andrew@0 32
andrew@0 33 };
andrew@0 34 #endif