#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <stdarg.h>
#include "CLogger.h"
Include dependency graph for CLogger.cpp:
Go to the source code of this file.
Functions | |
bool | CLoggerGlobalLogExists (void) |
Variables | |
CLogger * | g_pGlobalLog = 0 |
|
Global function to check if the GLOBAL LOG FILE exists.
Definition at line 68 of file CLogger.cpp. References g_pGlobalLog. 00069 { 00070 if(g_pGlobalLog != 0) 00071 return true; 00072 return false; 00073 }
|
|
Global log object declaration. Definition at line 58 of file CLogger.cpp. Referenced by CLoggerGlobalLogExists(). |