annotate DrumTimingLoader_OF/src/testApp.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 82352cfc0b23
children
rev   line source
andrew@0 1 #pragma once
andrew@0 2
andrew@0 3 #include "ofMain.h"
andrew@0 4
andrew@0 5 #include "DrumTimingLoader.h"
andrew@0 6
andrew@0 7 class testApp : public ofBaseApp{
andrew@0 8
andrew@0 9 public:
andrew@0 10 void setup();
andrew@0 11 void update();
andrew@0 12 void draw();
andrew@0 13
andrew@0 14 void keyPressed (int key);
andrew@0 15 void keyReleased(int key);
andrew@0 16 void mouseMoved(int x, int y );
andrew@0 17 void mouseDragged(int x, int y, int button);
andrew@0 18 void mousePressed(int x, int y, int button);
andrew@0 19 void mouseReleased(int x, int y, int button);
andrew@0 20 void windowResized(int w, int h);
andrew@0 21 void dragEvent(ofDragInfo dragInfo);
andrew@0 22 void gotMessage(ofMessage msg);
andrew@0 23
andrew@0 24 DrumTimingLoader drumTimer;
andrew@0 25
andrew@0 26
andrew@0 27 };