12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- /*
- * Copyright (c) 2017-2023 zhllxt
- *
- * author : zhllxt
- * email : 37792738@qq.com
- *
- * Distributed under the Boost Software License, Version 1.0. (See accompanying
- * file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
- */
- #ifndef __ASIO2_SPDLOG_HPP__
- #define __ASIO2_SPDLOG_HPP__
- #if defined(_MSC_VER) && (_MSC_VER >= 1200)
- #pragma once
- #endif // defined(_MSC_VER) && (_MSC_VER >= 1200)
- #include <asio2/base/detail/push_options.hpp>
- #ifndef ASIO2_DISABLE_AUTO_HEADER_ONLY
- #ifndef SPDLOG_HEADER_ONLY
- #define SPDLOG_HEADER_ONLY
- #endif
- #endif
- #include <spdlog/spdlog.h>
- #include <spdlog/async.h>
- #include <spdlog/pattern_formatter.h>
- #include <spdlog/stopwatch.h>
- #include <spdlog/sinks/basic_file_sink.h>
- #include <spdlog/sinks/daily_file_sink.h>
- #include <spdlog/sinks/hourly_file_sink.h>
- #include <spdlog/sinks/rotating_file_sink.h>
- #include <spdlog/sinks/stdout_color_sinks.h>
- #include <spdlog/sinks/stdout_sinks.h>
- #include <spdlog/fmt/fmt.h>
- #include <spdlog/fmt/bin_to_hex.h>
- #include <spdlog/fmt/chrono.h>
- #include <spdlog/fmt/compile.h>
- #include <spdlog/fmt/ostr.h>
- #include <spdlog/fmt/ranges.h>
- #include <spdlog/fmt/xchar.h>
- #include <asio2/base/detail/pop_options.hpp>
- #endif // !__ASIO2_SPDLOG_HPP__
|