mirror of
https://github.com/gabime/spdlog.git
synced 2025-09-29 09:59:33 +08:00
split spdlog.cpp to multiple .cpp files
This commit is contained in:
14
src/file_sinks.cpp
Normal file
14
src/file_sinks.cpp
Normal file
@@ -0,0 +1,14 @@
|
||||
#include "spdlog/details/null_mutex.h"
|
||||
#include "spdlog/async.h"
|
||||
|
||||
#include "spdlog/sinks/base_sink-inl.h"
|
||||
template class spdlog::sinks::base_sink<std::mutex>;
|
||||
template class spdlog::sinks::base_sink<spdlog::details::null_mutex>;
|
||||
|
||||
#include "spdlog/sinks/basic_file_sink-inl.h"
|
||||
template class spdlog::sinks::basic_file_sink<std::mutex>;
|
||||
template class spdlog::sinks::basic_file_sink<spdlog::details::null_mutex>;
|
||||
|
||||
#include "spdlog/sinks/rotating_file_sink-inl.h"
|
||||
template class spdlog::sinks::rotating_file_sink<std::mutex>;
|
||||
template class spdlog::sinks::rotating_file_sink<spdlog::details::null_mutex>;
|
Reference in New Issue
Block a user