2019-06-04 05:09:16 +08:00
|
|
|
// Copyright(c) 2015-present, Gabi Melman & spdlog contributors.
|
2019-05-12 01:06:17 +08:00
|
|
|
// Distributed under the MIT License (http://opensource.org/licenses/MIT)
|
2019-05-12 06:12:46 +08:00
|
|
|
|
2019-05-18 12:09:22 +08:00
|
|
|
#ifndef SPDLOG_COMPILED_LIB
|
|
|
|
#error Please define SPDLOG_COMPILED_LIB to compile this file.
|
2019-05-12 06:01:37 +08:00
|
|
|
#endif
|
2019-05-12 01:06:17 +08:00
|
|
|
|
2019-05-13 05:09:00 +08:00
|
|
|
#include "spdlog/spdlog-inl.h"
|
2019-05-12 01:15:03 +08:00
|
|
|
#include "spdlog/common-inl.h"
|
2019-09-05 06:25:00 +08:00
|
|
|
#include "spdlog/details/backtracer-inl.h"
|
2019-05-11 18:20:11 +08:00
|
|
|
#include "spdlog/details/registry-inl.h"
|
|
|
|
#include "spdlog/details/os-inl.h"
|
|
|
|
#include "spdlog/details/pattern_formatter-inl.h"
|
2019-09-05 19:37:25 +08:00
|
|
|
#include "spdlog/details/log_msg-inl.h"
|
2019-09-19 16:52:03 +08:00
|
|
|
#include "spdlog/details/log_msg_buffer-inl.h"
|
2019-09-05 19:37:25 +08:00
|
|
|
#include "spdlog/logger-inl.h"
|
|
|
|
#include "spdlog/sinks/sink-inl.h"
|
2019-09-20 06:28:02 +08:00
|
|
|
#include "spdlog/sinks/base_sink-inl.h"
|
|
|
|
#include "spdlog/details/null_mutex.h"
|
|
|
|
|
|
|
|
#include <mutex>
|
|
|
|
|
2019-09-19 17:06:53 +08:00
|
|
|
// template instantiate logger constructor with sinks init list
|
2019-09-05 19:37:25 +08:00
|
|
|
template spdlog::logger::logger(std::string name, sinks_init_list::iterator begin, sinks_init_list::iterator end);
|
2019-09-20 06:28:02 +08:00
|
|
|
template class spdlog::details::circular_q<spdlog::details::log_msg_buffer>;
|
|
|
|
template class spdlog::sinks::base_sink<std::mutex>;
|
|
|
|
template class spdlog::sinks::base_sink<spdlog::details::null_mutex>;
|
2019-09-20 05:18:36 +08:00
|
|
|
template class fmt::basic_string_view<char>;
|
|
|
|
template class fmt::basic_memory_buffer<char, 250>;
|