2019-09-05 14:37:25 +03:00
|
|
|
// Copyright(c) 2015-present, Gabi Melman & spdlog contributors.
|
|
|
|
|
// Distributed under the MIT License (http://opensource.org/licenses/MIT)
|
|
|
|
|
|
|
|
|
|
#ifndef SPDLOG_COMPILED_LIB
|
2021-07-19 00:50:51 +03:00
|
|
|
# error Please define SPDLOG_COMPILED_LIB to compile this file.
|
2019-09-05 14:37:25 +03:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#include <mutex>
|
|
|
|
|
|
2020-03-06 15:51:07 +02:00
|
|
|
#include <spdlog/details/null_mutex.h>
|
|
|
|
|
#include <spdlog/async.h>
|
2019-09-05 14:37:25 +03:00
|
|
|
//
|
|
|
|
|
// color sinks
|
|
|
|
|
//
|
|
|
|
|
#ifdef _WIN32
|
2021-07-19 00:50:51 +03:00
|
|
|
# include <spdlog/sinks/wincolor_sink-inl.h>
|
2020-03-10 02:02:16 +07:00
|
|
|
template class SPDLOG_API spdlog::sinks::wincolor_sink<spdlog::details::console_mutex>;
|
|
|
|
|
template class SPDLOG_API spdlog::sinks::wincolor_sink<spdlog::details::console_nullmutex>;
|
|
|
|
|
template class SPDLOG_API spdlog::sinks::wincolor_stdout_sink<spdlog::details::console_mutex>;
|
|
|
|
|
template class SPDLOG_API spdlog::sinks::wincolor_stdout_sink<spdlog::details::console_nullmutex>;
|
|
|
|
|
template class SPDLOG_API spdlog::sinks::wincolor_stderr_sink<spdlog::details::console_mutex>;
|
|
|
|
|
template class SPDLOG_API spdlog::sinks::wincolor_stderr_sink<spdlog::details::console_nullmutex>;
|
2019-09-05 14:37:25 +03:00
|
|
|
#else
|
2021-07-19 00:50:51 +03:00
|
|
|
# include "spdlog/sinks/ansicolor_sink-inl.h"
|
2020-05-05 02:12:39 +03:00
|
|
|
template class SPDLOG_API spdlog::sinks::ansicolor_sink<spdlog::details::console_mutex>;
|
|
|
|
|
template class SPDLOG_API spdlog::sinks::ansicolor_sink<spdlog::details::console_nullmutex>;
|
|
|
|
|
template class SPDLOG_API spdlog::sinks::ansicolor_stdout_sink<spdlog::details::console_mutex>;
|
|
|
|
|
template class SPDLOG_API spdlog::sinks::ansicolor_stdout_sink<spdlog::details::console_nullmutex>;
|
|
|
|
|
template class SPDLOG_API spdlog::sinks::ansicolor_stderr_sink<spdlog::details::console_mutex>;
|
|
|
|
|
template class SPDLOG_API spdlog::sinks::ansicolor_stderr_sink<spdlog::details::console_nullmutex>;
|
2019-09-05 14:37:25 +03:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
// factory methods for color loggers
|
|
|
|
|
#include "spdlog/sinks/stdout_color_sinks-inl.h"
|
2020-03-10 02:02:16 +07:00
|
|
|
template SPDLOG_API std::shared_ptr<spdlog::logger> spdlog::stdout_color_mt<spdlog::synchronous_factory>(
|
2019-09-05 14:37:25 +03:00
|
|
|
const std::string &logger_name, color_mode mode);
|
2020-03-10 02:02:16 +07:00
|
|
|
template SPDLOG_API std::shared_ptr<spdlog::logger> spdlog::stdout_color_st<spdlog::synchronous_factory>(
|
2019-09-05 14:37:25 +03:00
|
|
|
const std::string &logger_name, color_mode mode);
|
2020-03-10 02:02:16 +07:00
|
|
|
template SPDLOG_API std::shared_ptr<spdlog::logger> spdlog::stderr_color_mt<spdlog::synchronous_factory>(
|
2019-09-05 14:37:25 +03:00
|
|
|
const std::string &logger_name, color_mode mode);
|
2020-03-10 02:02:16 +07:00
|
|
|
template SPDLOG_API std::shared_ptr<spdlog::logger> spdlog::stderr_color_st<spdlog::synchronous_factory>(
|
2019-09-05 14:37:25 +03:00
|
|
|
const std::string &logger_name, color_mode mode);
|
|
|
|
|
|
2020-03-15 18:51:52 +02:00
|
|
|
template SPDLOG_API std::shared_ptr<spdlog::logger> spdlog::stdout_color_mt<spdlog::async_factory>(
|
|
|
|
|
const std::string &logger_name, color_mode mode);
|
|
|
|
|
template SPDLOG_API std::shared_ptr<spdlog::logger> spdlog::stdout_color_st<spdlog::async_factory>(
|
|
|
|
|
const std::string &logger_name, color_mode mode);
|
|
|
|
|
template SPDLOG_API std::shared_ptr<spdlog::logger> spdlog::stderr_color_mt<spdlog::async_factory>(
|
|
|
|
|
const std::string &logger_name, color_mode mode);
|
|
|
|
|
template SPDLOG_API std::shared_ptr<spdlog::logger> spdlog::stderr_color_st<spdlog::async_factory>(
|
|
|
|
|
const std::string &logger_name, color_mode mode);
|