diff options
Diffstat (limited to 'json-instagram/src/exampleApp.h')
| -rw-r--r-- | json-instagram/src/exampleApp.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/json-instagram/src/exampleApp.h b/json-instagram/src/exampleApp.h new file mode 100644 index 0000000..1dcb032 --- /dev/null +++ b/json-instagram/src/exampleApp.h @@ -0,0 +1,15 @@ +#pragma once + + +#include "ofMain.h" +#include "ofxJSONElement.h" + + +class exampleApp : public ofBaseApp { +public: + void setup(); + void draw(); + + ofxJSONElement response; + std::vector<ofImage> images; +}; |
