1// Copyright(c) 2015-present, Gabi Melman & spdlog contributors.
2// Distributed under the MIT License (http://opensource.org/licenses/MIT)
3
4#ifndef SPDLOG_COMPILED_LIB
5# error Please define SPDLOG_COMPILED_LIB to compile this file.
6#endif
7
8#include <spdlog/details/null_mutex.h>
9#include <spdlog/details/file_helper-inl.h>
10#include <spdlog/sinks/basic_file_sink-inl.h>
11#include <spdlog/sinks/base_sink-inl.h>
12
13#include <mutex>
14
15template class SPDLOG_API spdlog::sinks::basic_file_sink<std::mutex>;
16template class SPDLOG_API spdlog::sinks::basic_file_sink<spdlog::details::null_mutex>;
17
18#include <spdlog/sinks/rotating_file_sink-inl.h>
19template class SPDLOG_API spdlog::sinks::rotating_file_sink<std::mutex>;
20template class SPDLOG_API spdlog::sinks::rotating_file_sink<spdlog::details::null_mutex>;
21