summaryrefslogtreecommitdiff
path: root/vamphost/src/testApp.h
diff options
context:
space:
mode:
authorComment <tim@gray.(none)>2013-05-20 08:55:30 +0100
committerComment <tim@gray.(none)>2013-05-20 08:55:30 +0100
commitcb7ec4965e6ec3d2142522c5c110b240f800e55d (patch)
treefda61842f9e9cf3d4d4049930aef01e784358068 /vamphost/src/testApp.h
parentb5115001759f0d3bf841a410cfe1881d4954a92b (diff)
vamp wrapper begun
Diffstat (limited to 'vamphost/src/testApp.h')
-rw-r--r--vamphost/src/testApp.h28
1 files changed, 28 insertions, 0 deletions
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