Skip to content

Instantly share code, notes, and snippets.

@hiroMTB
Created October 14, 2017 12:50
Show Gist options
  • Save hiroMTB/0eb357c2e142774282302935f1290c9f to your computer and use it in GitHub Desktop.
Save hiroMTB/0eb357c2e142774282302935f1290c9f to your computer and use it in GitHub Desktop.
class ofApp{
public:
ofApp(){};
static ofApp& get(){
static ofApp app;
return app;
}
ofApp(ofApp const&) = delete;
void operator=(ofApp const&) = delete;
int val = 4321;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment