You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
1.0 KiB

3 years ago
  1. // Copyright(c) 2015-present, Gabi Melman & spdlog contributors.
  2. // Distributed under the MIT License (http://opensource.org/licenses/MIT)
  3. #ifndef SPDLOG_COMPILED_LIB
  4. # error Please define SPDLOG_COMPILED_LIB to compile this file.
  5. #endif
  6. #include <spdlog/spdlog-inl.h>
  7. #include <spdlog/common-inl.h>
  8. #include <spdlog/details/backtracer-inl.h>
  9. #include <spdlog/details/registry-inl.h>
  10. #include <spdlog/details/os-inl.h>
  11. #include <spdlog/pattern_formatter-inl.h>
  12. #include <spdlog/details/log_msg-inl.h>
  13. #include <spdlog/details/log_msg_buffer-inl.h>
  14. #include <spdlog/logger-inl.h>
  15. #include <spdlog/sinks/sink-inl.h>
  16. #include <spdlog/sinks/base_sink-inl.h>
  17. #include <spdlog/details/null_mutex.h>
  18. #include <mutex>
  19. // template instantiate logger constructor with sinks init list
  20. template SPDLOG_API spdlog::logger::logger(std::string name, sinks_init_list::iterator begin, sinks_init_list::iterator end);
  21. template class SPDLOG_API spdlog::sinks::base_sink<std::mutex>;
  22. template class SPDLOG_API spdlog::sinks::base_sink<spdlog::details::null_mutex>;