This commit is contained in:
CupWater
2026-08-17 13:35:14 +08:00
parent b4ed8d601d
commit 7eb3331d8e
3 changed files with 24 additions and 27 deletions
+6 -6
View File
@@ -2,15 +2,15 @@
#define FEATHERLOG_LOG_FORMATTER_HPP
#include <string>
#include <featherlog/flog_definitions.h>
namespace flog
{
class FLOG_API LogFormatter
{
namespace flog {
class FLOG_API LogFormatter {
public:
virtual ~LogFormatter() = default;
virtual FLOG_CALL std::string format() = 0;
virtual std::string FLOG_CALL format() = 0;
};
}
#endif
#endif