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

33 lines
474 B
C++
Raw Normal View History

2011-10-03 18:41:19 +00:00
#pragma once
#include "FileDefine.h"
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