view DrumTimingLoader_OF/src/DrumTimingLoader.h @ 3:303edbbcf1bd tip

updated ofxAubioOnsetDetection file
author Andrew N Robertson <andrew.robertson@eecs.qmul.ac.uk>
date Sun, 24 Nov 2013 08:15:17 +0000
parents 50ba55abea8c
children
line wrap: on
line source
/*
 *  DrumTimingLoader.h
 *  DrumTimingLoader
 *
 *  Created by Andrew on 09/08/2012.
 *  Copyright 2012 QMUL. All rights reserved.
 *file://localhost/Users/andrew/Dropbox/DrumTiming/DrumTimingLoader_OF/PerformanceAnalyserSrc/
 */

#ifndef DRUM_TIMING_LOADER
#define DRUM_TIMING_LOADER

#include "RecordedMultipleAudio.h"

// basic file operations for text file stuff
#include <iostream>
#include <fstream>
using namespace std;

//just stores recordedTracks


class DrumTimingLoader{
	
	public:
		DrumTimingLoader();
		void initialise();
		void update();
		void draw();
	void windowResized(int w, int h);
	RecordedMultipleAudio recordedTracks;

};
#endif