#ifndef SINGLETON_H #define SINGLETON_H template class ISingleton { public: virtual T *getInstance() = 0; }; #endif