This commit is contained in:
CupWater
2026-08-17 11:31:12 +08:00
parent c196ffb6d8
commit e99541c139
9 changed files with 51 additions and 19 deletions
+18
View File
@@ -0,0 +1,18 @@
#ifndef FEATHERLOG_LOG_FORMATTER_HPP
#define FEATHERLOG_LOG_FORMATTER_HPP
#include <string>
#include <featherlog/flog_definitions.h>
namespace flog
{
class FLOG_API LogFormatter
{
public:
virtual ~LogFormatter() = default;
virtual std::string FLOG_CALL format() = 0;
};
}
#endif