386d58b586
git-svn-id: http://mc-server.googlecode.com/svn/trunk@3 0a769ca7-a7f5-676a-18bf-c427514a06d6
39 lines
1.1 KiB
C++
39 lines
1.1 KiB
C++
#pragma once
|
|
|
|
#ifndef _WIN32
|
|
#include <stdarg.h>
|
|
#endif
|
|
|
|
class cCriticalSection;
|
|
class cLog;
|
|
class cMCLogger //tolua_export
|
|
{ //tolua_export
|
|
private:
|
|
#ifdef _WIN32
|
|
typedef char* va_list;
|
|
#endif
|
|
public: //tolua_export
|
|
cMCLogger();
|
|
cMCLogger( char* a_File ); //tolua_export
|
|
~cMCLogger(); //tolua_export
|
|
|
|
void Log(const char* a_Format, va_list a_ArgList);
|
|
void Info(const char* a_Format, va_list a_ArgList);
|
|
void Warn(const char* a_Format, va_list a_ArgList);
|
|
void Error(const char* a_Format, va_list a_ArgList);
|
|
|
|
void LogSimple(const char* a_Text, int a_LogType = 0 ); //tolua_export
|
|
|
|
static cMCLogger* GetInstance();
|
|
private:
|
|
void SetColor( unsigned char a_Color );
|
|
|
|
cCriticalSection* m_CriticalSection;
|
|
cLog* m_Log;
|
|
static cMCLogger* s_MCLogger;
|
|
}; //tolua_export
|
|
|
|
extern void LOG(const char* a_Format, ...);
|
|
extern void LOGINFO(const char* a_Format, ...);
|
|
extern void LOGWARN(const char* a_Format, ...);
|
|
extern void LOGERROR(const char* a_Format, ...); |