#ifndef __INSTANCE_H__ #define __INSTANCE_H__ template < typename T > class Instance { public: static T* GetInstance() { static T _instance; return &_instance; }; }; #endif