SHA256
16 lines
272 B
C++
16 lines
272 B
C++
#ifndef FEATHERLOG_LOG_FORMATTER_HPP
|
|
#define FEATHERLOG_LOG_FORMATTER_HPP
|
|
|
|
#include <string>
|
|
|
|
namespace flog
|
|
{
|
|
class FLOG_API LogFormatter
|
|
{
|
|
public:
|
|
virtual ~LogFormatter() = default;
|
|
virtual FLOG_CALL std::string format() = 0;
|
|
};
|
|
}
|
|
|
|
#endif |