Mercurial > hg > midi-score-follower
view jnmr/Annotations.h @ 38:c3d32207565f
Annotations autoloading for the various files, still needs proper checker though
author | Andrew N Robertson <andrew.robertson@eecs.qmul.ac.uk> |
---|---|
date | Fri, 16 Dec 2011 17:37:44 +0000 |
parents | 5a1b0c6fa1fb |
children | 3ce6dadd8167 |
line wrap: on
line source
/* * annotations.h * jnmr_MidiFollower * * Created by Andrew on 15/12/2011. * Copyright 2011 QMUL. All rights reserved. * */ #ifndef ANNOTATIONS #define ANNOTATIONS #include "ofMain.h" // basic file operations for text file stuff #include <iostream> #include <fstream> using namespace std; struct Notation { int midiNote; float beatLocation; float eventTime; }; class Annotations{ public: Annotations(); //void readInSomeValues(); void readInRWCfile(std::string& pathName); //~Annotations(); void printAnnotations(); vector<Notation> rwcAnnotations; }; #endif