#ifndef SINGLETON_H #define SINGLETON_H /** * 单例模板类 */ template class Singleton{ public: static T& instance(){ static T ins; return ins; } }; #endif // SINGLETON_H