| 36 | #include "DurationController.h" |
| 37 | |
| 38 | class testApp : public ofBaseApp{ |
| 39 | public: |
| 40 | void setup(); |
| 41 | void update(); |
| 42 | void draw(); |
| 43 | |
| 44 | void keyPressed(int key); |
| 45 | void keyReleased(int key); |
| 46 | void mouseMoved(int x, int y); |
| 47 | void mouseDragged(int x, int y, int button); |
| 48 | void mousePressed(int x, int y, int button); |
| 49 | void mouseReleased(int x, int y, int button); |
| 50 | |
| 51 | void windowResized(int w, int h); |
| 52 | void dragEvent(ofDragInfo dragInfo); |
| 53 | void gotMessage(ofMessage msg); |
| 54 | |
| 55 | DurationController controller; |
| 56 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected