Skip to content

Instantly share code, notes, and snippets.

@just-be-dev
Created March 1, 2015 01:48
Show Gist options
  • Select an option

  • Save just-be-dev/7fd5e1f539153c8edeaf to your computer and use it in GitHub Desktop.

Select an option

Save just-be-dev/7fd5e1f539153c8edeaf to your computer and use it in GitHub Desktop.
Inheritable singleton class in C++
#pragma once
#include<iostream>
#include<cstdlib>
template<typename T>
class Singleton
{
public:
inline static T& getInstance()
{
static T instance;
return instance;
}
protected:
Singleton() {};
Singleton(const Singleton&) {};
~Singleton() {};
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment