mirror of
https://github.com/worldforge/cyphesis
synced 2026-08-13 12:26:04 -04:00
I.e. make sure that all objects have a defined life time. This requires that we actually set up and tear down the singletons.
11 lines
364 B
C++
11 lines
364 B
C++
//Add custom implementations of stubbed functions here; this file won't be rewritten when re-generating stubs.
|
|
template<> Inheritance* Singleton<Inheritance>::ms_Singleton = nullptr;
|
|
|
|
#ifndef STUB_Inheritance_Inheritance
|
|
#define STUB_Inheritance_Inheritance
|
|
Inheritance::Inheritance()
|
|
: Singleton(), noClass(nullptr)
|
|
{
|
|
|
|
}
|
|
#endif //STUB_Inheritance_Inheritance
|