summaryrefslogtreecommitdiff
path: root/json-instagram/src/exampleApp.h
diff options
context:
space:
mode:
authorTim Redfern <tim@eclectronics.org>2014-03-10 12:40:45 +0000
committerTim Redfern <tim@eclectronics.org>2014-03-10 12:40:45 +0000
commit2a6b5328dec0ef2200bdbb94b16e8531c7c071b2 (patch)
treec77bf8ceb17748ad2fd89f5274b73f42c54329f9 /json-instagram/src/exampleApp.h
parent9301d02887e2d75457c3ee885418f44846ca3143 (diff)
getting images from instagram
Diffstat (limited to 'json-instagram/src/exampleApp.h')
-rw-r--r--json-instagram/src/exampleApp.h15
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;
+};