From cb7ec4965e6ec3d2142522c5c110b240f800e55d Mon Sep 17 00:00:00 2001 From: Comment Date: Mon, 20 May 2013 08:55:30 +0100 Subject: vamp wrapper begun --- vamphost/src/testApp.h | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 vamphost/src/testApp.h (limited to 'vamphost/src/testApp.h') diff --git a/vamphost/src/testApp.h b/vamphost/src/testApp.h new file mode 100644 index 0000000..855889c --- /dev/null +++ b/vamphost/src/testApp.h @@ -0,0 +1,28 @@ +#ifndef _TEST_APP +#define _TEST_APP + +#include "ofMain.h" +#include "ofxVamphost.h" + + +class testApp : public ofBaseApp{ + +public: + void setup(); + void update(); + void draw(); + void exit(); + + void keyPressed (int key); + void keyReleased(int key); + void mouseMoved(int x, int y ); + void mouseDragged(int x, int y, int button); + void mousePressed(int x, int y, int button); + void mouseReleased(int x, int y, int button); + void windowResized(int w, int h); + + + +}; + +#endif -- cgit v1.2.3