comparison matchAnnotationSrc/main.cpp @ 49:3ce6dadd8167

Added src for the results calculator, comparing match output with the JNMR midi follower output
author Andrew N Robertson <andrew.robertson@eecs.qmul.ac.uk>
date Fri, 23 Mar 2012 10:53:57 +0000
parents
children
comparison
equal deleted inserted replaced
48:803edc47e825 49:3ce6dadd8167
1 #include "ofMain.h"
2 #include "testApp.h"
3 #include "ofAppGlutWindow.h"
4
5 //========================================================================
6 int main( ){
7
8 ofAppGlutWindow window;
9 ofSetupOpenGL(&window, 1024,768, OF_WINDOW); // <-------- setup the GL context
10
11 // this kicks off the running of my app
12 // can be OF_WINDOW or OF_FULLSCREEN
13 // pass in width and height too:
14 ofRunApp( new testApp());
15
16 }