You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
spdlog/include/c11log/formatter.h

13 lines
173 B
C

12 years ago
#pragma once
#include "details/log_msg.h"
12 years ago
namespace c11log
{
class formatter
{
12 years ago
public:
virtual ~formatter() {}
virtual void format(details::log_msg& msg) = 0;
12 years ago
};
}