Skip to content

Instantly share code, notes, and snippets.

@mihaisebea
Last active February 25, 2018 14:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mihaisebea/3b272de45ab8f67af06785baf38e35d1 to your computer and use it in GitHub Desktop.
Save mihaisebea/3b272de45ab8f67af06785baf38e35d1 to your computer and use it in GitHub Desktop.
class S
{
public:
static S& GetInstance()
{
static S instance;
return instance;
}
private:
S() {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment