Skip to content

Instantly share code, notes, and snippets.

@zephraph
Created March 1, 2015 01:48
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 zephraph/7fd5e1f539153c8edeaf to your computer and use it in GitHub Desktop.
Save zephraph/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