Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-30 09:45:12

0001 /*
0002  *          Copyright Andrey Semashev 2007 - 2015.
0003  * Distributed under the Boost Software License, Version 1.0.
0004  *    (See accompanying file LICENSE_1_0.txt or copy at
0005  *          http://www.boost.org/LICENSE_1_0.txt)
0006  */
0007 /*!
0008  * \file   sinks.hpp
0009  * \author Andrey Semashev
0010  * \date   13.07.2009
0011  *
0012  * This header includes other Boost.Log headers with all sinks.
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 // !defined(BOOST_LOG_NO_THREADS)
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 // BOOST_WINDOWS
0043 
0044 #ifdef BOOST_HAS_PRAGMA_ONCE
0045 #pragma once
0046 #endif
0047 
0048 #endif // BOOST_LOG_SINKS_HPP_INCLUDED_