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

26 lines
335 B
C

12 years ago
#pragma once
#include <string>
#include <chrono>
12 years ago
#include <iomanip>
#include <thread>
#include <cstring>
11 years ago
#include <sstream>
11 years ago
#include "common.h"
12 years ago
#include "details/os.h"
#include "details/log_msg.h"
#include "details/fast_oss.h"
11 years ago
12 years ago
namespace c11log
{
class formatter
{
12 years ago
public:
virtual void format(details::log_msg& msg) = 0;
12 years ago
};
}