www.pudn.com > antispam-addin.rar > log.cxx, change:2004-06-03,size:222b
#include "log.hxx"
Log::Log(bool bLog)
{
m_bLog = bLog;
}
Log::~Log()
{
}
void Log::WriteLog(char *Msg,int Level)
{
if(!m_bLog)
return;
int i = 0;
while(i < Level)
{
;//
i++;
}
}