iw4x-client/src/Components/Modules/Singleton.hpp

18 lines
273 B
C++
Raw Normal View History

2015-12-27 14:05:43 -05:00
namespace Components
{
class Singleton : public Component
{
public:
2016-08-15 10:40:30 -04:00
Singleton();
2016-09-16 05:04:28 -04:00
#if defined(DEBUG) || defined(FORCE_UNIT_TESTS)
const char* getName() { return "Singleton"; };
2016-08-15 10:40:30 -04:00
#endif
2015-12-27 14:05:43 -05:00
static bool IsFirstInstance();
private:
static bool FirstInstance;
};
}