diff options
| author | Tim Redfern <tim@eclectronics.org> | 2014-03-10 12:40:45 +0000 |
|---|---|---|
| committer | Tim Redfern <tim@eclectronics.org> | 2014-03-10 12:40:45 +0000 |
| commit | 2a6b5328dec0ef2200bdbb94b16e8531c7c071b2 (patch) | |
| tree | c77bf8ceb17748ad2fd89f5274b73f42c54329f9 /json-instagram/src/exampleApp.h | |
| parent | 9301d02887e2d75457c3ee885418f44846ca3143 (diff) | |
getting images from instagram
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; +}; |
