Files
cuberite-2a/source/cLog.h
T

37 lines
545 B
C++
Raw Normal View History

2011-10-03 18:41:19 +00:00
#pragma once
#include "MemoryLeak.h"
#include "FileDefine.h"
#ifndef _WIN32
#include <stdarg.h>
2011-10-03 18:41:19 +00:00
#endif
class cLog
{ // tolua_export
2011-10-03 18:41:19 +00:00
private:
FILE * m_File;
static cLog * s_Log;
2011-10-03 18:41:19 +00:00
public:
cLog(const AString & a_FileName);
2011-10-03 18:41:19 +00:00
~cLog();
void Log(const char* a_Format, va_list argList );
void Log(const char* a_Format, ...);
//tolua_begin
void SimpleLog(const char* a_String);
void OpenLog( const char* a_FileName );
void CloseLog();
void ClearLog();
static cLog* GetInstance();
};
//tolua_end