Imported Upstream version 1.57.0
[platform/upstream/boost.git] / boost / log / sinks.hpp
1 /*
2  *          Copyright Andrey Semashev 2007 - 2014.
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_multifile_backend.hpp>
37 #include <boost/log/sinks/text_ostream_backend.hpp>
38 #ifdef BOOST_WINDOWS
39 #include <boost/log/sinks/debug_output_backend.hpp>
40 #include <boost/log/sinks/event_log_backend.hpp>
41 #endif // BOOST_WINDOWS
42
43 #ifdef BOOST_HAS_PRAGMA_ONCE
44 #pragma once
45 #endif
46
47 #endif // BOOST_LOG_SINKS_HPP_INCLUDED_