diff options
| author | Tim Redfern <tim@eclectronics.org> | 2014-03-04 12:35:35 +0000 |
|---|---|---|
| committer | Tim Redfern <tim@eclectronics.org> | 2014-03-04 12:35:35 +0000 |
| commit | 3726e496813e556e88baf5dc8acabe290a1a66f4 (patch) | |
| tree | ec1027c650cb231c6835b2e85a5eb3021f8c0f61 /test-instagram/src/testApp.h | |
| parent | 8dd6225e9e0bc6e2ae204b434369259a845a7979 (diff) | |
https session not working
Diffstat (limited to 'test-instagram/src/testApp.h')
| -rw-r--r-- | test-instagram/src/testApp.h | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/test-instagram/src/testApp.h b/test-instagram/src/testApp.h new file mode 100644 index 0000000..8e4168b --- /dev/null +++ b/test-instagram/src/testApp.h @@ -0,0 +1,39 @@ +#ifndef _TEST_APP +#define _TEST_APP + +#include "ofMain.h" + +#include "Poco/Net/HTTPSClientSession.h" +#include "Poco/Net/HTTPRequest.h" +#include "Poco/Net/HTTPResponse.h" +#include "Poco/URI.h" +#include "Poco/Net/InvalidCertificateHandler.h" +#include "Poco/Net/AcceptCertificateHandler.h" +#include "Poco/Net/SSLManager.h" + + +class testApp : public ofBaseApp{ + + public: + + void setup(); + void update(); + void draw(); + + void keyPressed (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); + + + + int counter; + string responseStr; + string requestStr; + string action_url; + +}; + +#endif |
