]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/log/include/boost/log/sinks.hpp
bump version to 12.2.2-pve1
[ceph.git] / ceph / src / boost / libs / log / include / boost / log / sinks.hpp
1 /*
2 * Copyright Andrey Semashev 2007 - 2015.
3 * Distributed under the Boost Software License, Version 1.0.
4 * (See accompanying file LICENSE_1_0.txt or copy at
5 * http://www.boost.org/LICENSE_1_0.txt)
6 */
7 /*!
8 * \file sinks.hpp
9 * \author Andrey Semashev
10 * \date 13.07.2009
11 *
12 * This header includes other Boost.Log headers with all sinks.
13 */
14
15 #ifndef BOOST_LOG_SINKS_HPP_INCLUDED_
16 #define BOOST_LOG_SINKS_HPP_INCLUDED_
17
18 #include <boost/log/detail/config.hpp>
19
20 #include <boost/log/sinks/sink.hpp>
21
22 #include <boost/log/sinks/unlocked_frontend.hpp>
23 #if !defined(BOOST_LOG_NO_THREADS)
24 #include <boost/log/sinks/sync_frontend.hpp>
25 #include <boost/log/sinks/async_frontend.hpp>
26 #include <boost/log/sinks/unbounded_fifo_queue.hpp>
27 #include <boost/log/sinks/unbounded_ordering_queue.hpp>
28 #include <boost/log/sinks/bounded_fifo_queue.hpp>
29 #include <boost/log/sinks/bounded_ordering_queue.hpp>
30 #include <boost/log/sinks/drop_on_overflow.hpp>
31 #include <boost/log/sinks/block_on_overflow.hpp>
32 #endif // !defined(BOOST_LOG_NO_THREADS)
33
34 #include <boost/log/sinks/syslog_backend.hpp>
35 #include <boost/log/sinks/text_file_backend.hpp>
36 #include <boost/log/sinks/text_ipc_message_queue_backend.hpp>
37 #include <boost/log/sinks/text_multifile_backend.hpp>
38 #include <boost/log/sinks/text_ostream_backend.hpp>
39 #ifdef BOOST_WINDOWS
40 #include <boost/log/sinks/debug_output_backend.hpp>
41 #include <boost/log/sinks/event_log_backend.hpp>
42 #endif // BOOST_WINDOWS
43
44 #ifdef BOOST_HAS_PRAGMA_ONCE
45 #pragma once
46 #endif
47
48 #endif // BOOST_LOG_SINKS_HPP_INCLUDED_