18 lines
329 B
C++
18 lines
329 B
C++
#ifndef LOGDEBUG_H
|
|
#define LOGDEBUG_H
|
|
|
|
#include "LogType.h"
|
|
#include "LogStrategy.h"
|
|
#include "LogWriter.h"
|
|
|
|
class LogDebug : public LogStrategy
|
|
{
|
|
public:
|
|
void log(std::string message)
|
|
{
|
|
LogWriter* lw = LogWriter::getInstance();
|
|
lw->write(LogType::DEBUG, message);
|
|
}
|
|
};
|
|
|
|
#endif |