view matchAnnotationSrc/matchAnnotations.h @ 52:13194a9dca77 tip

Added exporting of image and text data
author Andrew N Robertson <andrew.robertson@eecs.qmul.ac.uk>
date Tue, 17 Jul 2012 22:13:10 +0100
parents 3ce6dadd8167
children
line wrap: on
line source
/*
 *  matchAnnotations.h
 *  matchJNMRannotationReader
 *
 *  Created by Andrew on 22/03/2012.
 *  Copyright 2012 QMUL. All rights reserved.
 *
 */


#ifndef MATCH_ANNOTATIONS
#define MATCH_ANNOTATIONS

#include "ofMain.h"

#include <iostream>
#include <fstream>
using namespace std;

struct MatchNotation {

	float midiTime;
	float audioTime;
};

class matchAnnotations{
public:
	//matchAnnotations();

	void readInMatchFile(std::string& pathName);
	//~Annotations();
	void 	printAnnotations();
	vector<MatchNotation> matchData;
	
};
#endif