Files
2022-10-26 12:25:11 +08:00

20 lines
185 B
C++

#ifndef _LOG_BASE_H_
#define _LOG_BASE_H_
class DBHandler;
class LogCriticalSection;
class LogBase
{
public:
LogBase();
~LogBase();
protected:
private:
};
#endif //_LOG_BASE_H_