embedded-framework/utils/Log/src/LogImpl.h
2023-07-20 08:18:17 -07:00

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