#pragma once template class Singleton { public: static T& getInstance() { static T* t = new T(); return *t; } };