spdlog/tests/includes.h

23 lines
519 B
C
Raw Normal View History

2016-04-20 11:57:49 +03:00
#pragma once
2018-03-09 15:26:33 +02:00
#include "catch.hpp"
#include "utils.h"
#include <chrono>
2016-04-20 11:57:49 +03:00
#include <cstdio>
2018-03-09 15:26:33 +02:00
#include <exception>
2016-04-20 11:57:49 +03:00
#include <fstream>
#include <ostream>
2018-03-09 15:26:33 +02:00
#include <string>
2016-04-20 11:57:49 +03:00
2017-11-06 12:39:04 +02:00
#define SPDLOG_TRACE_ON
#define SPDLOG_DEBUG_ON
2018-04-29 01:34:36 +03:00
#include "spdlog/async.h"
2018-07-07 13:22:43 +03:00
#include "spdlog/sinks/basic_file_sink.h"
2018-04-29 01:34:36 +03:00
#include "spdlog/sinks/daily_file_sink.h"
#include "spdlog/sinks/null_sink.h"
#include "spdlog/sinks/ostream_sink.h"
2018-04-29 01:36:45 +03:00
#include "spdlog/sinks/rotating_file_sink.h"
#include "spdlog/sinks/stdout_color_sinks.h"
2018-04-29 01:34:36 +03:00
#include "spdlog/spdlog.h"