File indexing completed on 2025-01-30 09:45:12
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015 #ifndef BOOST_LOG_SINKS_HPP_INCLUDED_
0016 #define BOOST_LOG_SINKS_HPP_INCLUDED_
0017
0018 #include <boost/log/detail/config.hpp>
0019
0020 #include <boost/log/sinks/sink.hpp>
0021
0022 #include <boost/log/sinks/unlocked_frontend.hpp>
0023 #if !defined(BOOST_LOG_NO_THREADS)
0024 #include <boost/log/sinks/sync_frontend.hpp>
0025 #include <boost/log/sinks/async_frontend.hpp>
0026 #include <boost/log/sinks/unbounded_fifo_queue.hpp>
0027 #include <boost/log/sinks/unbounded_ordering_queue.hpp>
0028 #include <boost/log/sinks/bounded_fifo_queue.hpp>
0029 #include <boost/log/sinks/bounded_ordering_queue.hpp>
0030 #include <boost/log/sinks/drop_on_overflow.hpp>
0031 #include <boost/log/sinks/block_on_overflow.hpp>
0032 #endif
0033
0034 #include <boost/log/sinks/syslog_backend.hpp>
0035 #include <boost/log/sinks/text_file_backend.hpp>
0036 #include <boost/log/sinks/text_ipc_message_queue_backend.hpp>
0037 #include <boost/log/sinks/text_multifile_backend.hpp>
0038 #include <boost/log/sinks/text_ostream_backend.hpp>
0039 #ifdef BOOST_WINDOWS
0040 #include <boost/log/sinks/debug_output_backend.hpp>
0041 #include <boost/log/sinks/event_log_backend.hpp>
0042 #endif
0043
0044 #ifdef BOOST_HAS_PRAGMA_ONCE
0045 #pragma once
0046 #endif
0047
0048 #endif