Ejemplo n.º 1
0
LogSubject::LogSubject()
{
    LogSubject_IsReady = true;

    // Must be at end of function
    PushDestroyCallbacks();
}
Ejemplo n.º 2
0
LastErrorTLS::LastErrorTLS()
{
    Symbols.Initialize();

    // Must be at end of function
    PushDestroyCallbacks();
}
Ejemplo n.º 3
0
WatchDogObserver::WatchDogObserver() :
    IsReporting(false)
{
    Start();

	// Must be at end of function
	PushDestroyCallbacks();
}
LongPollThread::LongPollThread() :
    Terminated(false)
{
    Start();

	// Must be at end of function
    PushDestroyCallbacks();
}
Ejemplo n.º 5
0
ProfileManager::ProfileManager(bool sys_register) :
	Changed(false)
{
	// Attempt to get the base path automatically, but this may fail
	BasePath = GetBaseOVRPath(false);

    if (sys_register)
        PushDestroyCallbacks();
}
Ejemplo n.º 6
0
FakeMemoryManager::FakeMemoryManager()
{
    PushDestroyCallbacks();
}
Ejemplo n.º 7
0
 LogSubject(){
     isShuttingDown = false;
     // Must be at end of function
     PushDestroyCallbacks();
 }
RenderFocusReader::RenderFocusReader()
{
	NoSharedMemory = false;

    PushDestroyCallbacks();
}