ofDocsexamples ios iPhoneGuiExample src ofApp.h
#pragma once

#include "ofxiOS.h"

//  Note:
//      If the app is not compiling, try removing the MyGuiView.xib reference
//      from the xcode project and adding it back to the project.
//      Set the deployment target in project / General / Deployment Target >= 5.1

class ofApp : public ofxiOSApp{
	
    public:
        void setup();
        void update();
        void draw();
        void exit();
    
        void touchDown(ofTouchEventArgs & touch);
        void touchMoved(ofTouchEventArgs & touch);
        void touchUp(ofTouchEventArgs & touch);
        void touchDoubleTap(ofTouchEventArgs & touch);
        void touchCancelled(ofTouchEventArgs & touch);
	
        void lostFocus();
        void gotFocus();
        void gotMemoryWarning();
        void deviceOrientationChanged(int newOrientation);
    
        float lengthRatio;
        int numPoints;
        bool bFill;

};