mirror of
https://gitee.com/jiuyilian/embedded-framework.git
synced 2025-01-06 10:16:51 -05:00
12 lines
233 B
C++
12 lines
233 B
C++
#ifndef LOG_IMPL_H
|
|
#define LOG_IMPL_H
|
|
#include "ILog.h"
|
|
class LogImpl : public ILog
|
|
{
|
|
public:
|
|
LogImpl() = default;
|
|
virtual ~LogImpl() = default;
|
|
bool IsWorking() override;
|
|
int Log(const char *buff) override;
|
|
};
|
|
#endif |