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