Files
spdlog/src/file_sinks.cpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
801 B
C++
Raw Permalink Normal View History

2019-09-05 18:31:08 +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 18:31:08 +03:00
#endif
2020-03-06 15:51:07 +02:00
#include <spdlog/details/file_helper-inl.h>
#include <spdlog/details/null_mutex.h>
2020-03-10 02:02:16 +07:00
#include <spdlog/sinks/base_sink-inl.h>
#include <spdlog/sinks/basic_file_sink-inl.h>
2020-03-06 15:51:07 +02:00
2019-09-05 18:31:08 +03:00
#include <mutex>
2019-09-20 01:28:02 +03:00
2020-03-10 02:02:16 +07:00
template class SPDLOG_API spdlog::sinks::basic_file_sink<std::mutex>;
template class SPDLOG_API spdlog::sinks::basic_file_sink<spdlog::details::null_mutex>;
#include <spdlog/sinks/rotating_file_sink-inl.h>
template class SPDLOG_API spdlog::sinks::rotating_file_sink<std::mutex>;
2021-05-30 13:02:56 +01:00
template class SPDLOG_API spdlog::sinks::rotating_file_sink<spdlog::details::null_mutex>;