DragonNest/Server/ServiceMonitorEx/Source/ErrorLogMngr.cpp
2024-12-20 16:56:44 +08:00

30 lines
668 B
C++
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.


#include "StdAfx.h"
#include "ErrorLogMngr.h"
// ERRLOGINFO
// CErrorLogMngr
DEFINE_SINGLETON_CLASS(CErrorLogMngr);
CErrorLogMngr::CErrorLogMngr() : m_IsOpen(FALSE)
{
}
DWORD CErrorLogMngr::Open()
{
m_IsOpen = TRUE;
return NOERROR;
}
VOID CErrorLogMngr::Close()
{
m_IsOpen = FALSE;
}