aboutsummaryrefslogtreecommitdiffstats
path: root/ofxMaxim/ofxMaximExample_0.8.4_OSX/src/ofApp.h
diff options
context:
space:
mode:
Diffstat (limited to 'ofxMaxim/ofxMaximExample_0.8.4_OSX/src/ofApp.h')
-rw-r--r--ofxMaxim/ofxMaximExample_0.8.4_OSX/src/ofApp.h51
1 files changed, 0 insertions, 51 deletions
diff --git a/ofxMaxim/ofxMaximExample_0.8.4_OSX/src/ofApp.h b/ofxMaxim/ofxMaximExample_0.8.4_OSX/src/ofApp.h
deleted file mode 100644
index 0c1c88a..0000000
--- a/ofxMaxim/ofxMaximExample_0.8.4_OSX/src/ofApp.h
+++ /dev/null
@@ -1,51 +0,0 @@
-#pragma once
-
-#include "ofMain.h"
-#include "ofxMaxim.h"
-
-class ofApp : public ofBaseApp{
-
- public:
- void setup();
- void update();
- void draw();
-
- 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);
- void dragEvent(ofDragInfo dragInfo);
- void gotMessage(ofMessage msg);
-
-
- void audioOut(float * output, int bufferSize, int nChannels);
- void audioIn(float * input, int bufferSize, int nChannels);
-
- int bufferSize;
- int sampleRate;
-
-
- /* stick you maximilian declarations below
-
- For information on how maximilian works, take a look at the example code at
-
- http://www.maximilian.strangeloop.co.uk
-
- under 'Tutorials'.
-
-
- */
-
-
- ofxMaxiOsc myOsc1;
- ofxMaxiSample sample1;
- double patch1,sample,outputs1[2];
- ofxMaxiMix channel1;
-
-
-};
-
-