This commit is contained in:
CupWater
2026-08-17 10:02:18 +08:00
parent d54d2fcff5
commit c196ffb6d8
8 changed files with 29 additions and 30 deletions
+15
View File
@@ -0,0 +1,15 @@
#ifndef FEATHERLOG_LOG_FORMATTER_HPP
#define FEATHERLOG_LOG_FORMATTER_HPP
#include <string>
namespace flog
{
class LogFormatter
{
public:
virtual ~LogFormatter() = default;
virtual std::string format() = 0;
};
}
#endif