/* * Singleton.h * * Created on: 04.07.2012 * Author: Felix */ #ifndef DG_SINGLETON_H_ #define DG_SINGLETON_H_ #include /** * Template class for inheriting singleton behaviour. * * This uses lazy initialization and should be thread safe in C++11 (untested). * To use, just make a subclass with only a private default constructor and Singleton * as friend class. * * @code * class MyClass : public Singleton { * private: * friend class Singleton; * MyClass() = default; * }; * @endcode */ template class Singleton : public sf::NonCopyable { // Public functions. public: static T& i(); }; /** * Returns the instance of T. */ template T& Singleton::i() { static T s; return s; }; #endif /* DG_SINGLETON_H_ */