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/tests/includes.h

26 lines
641 B
C

9 years ago
#pragma once
8 years ago
#include "catch.hpp"
#include "utils.h"
#include <chrono>
9 years ago
#include <cstdio>
8 years ago
#include <exception>
9 years ago
#include <fstream>
#include <iostream>
#include <ostream>
#include <sstream>
8 years ago
#include <string>
#include <iomanip>
#include <stdlib.h>
9 years ago
#define SPDLOG_ACTIVE_LEVEL SPDLOG_LEVEL_DEBUG
#include "spdlog/spdlog.h"
7 years ago
#include "spdlog/async.h"
7 years ago
#include "spdlog/sinks/basic_file_sink.h"
7 years ago
#include "spdlog/sinks/daily_file_sink.h"
#include "spdlog/sinks/null_sink.h"
#include "spdlog/sinks/ostream_sink.h"
7 years ago
#include "spdlog/sinks/rotating_file_sink.h"
#include "spdlog/sinks/stdout_color_sinks.h"
6 years ago
#include "spdlog/details/pattern_formatter.h"