class Singleton { public: static Singleton* getInstance(void); Singleton() {}; ~Singleton() {}; private: static Singleton* single; };