20 lines
185 B
C++
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_
|