annotate DEPENDENCIES/generic/include/boost/log/sinks.hpp @ 133:4acb5d8d80b6 tip

Don't fail environmental check if README.md exists (but .txt and no-suffix don't)
author Chris Cannam
date Tue, 30 Jul 2019 12:25:44 +0100
parents c530137014c0
children
rev   line source
Chris@16 1 /*
Chris@101 2 * Copyright Andrey Semashev 2007 - 2015.
Chris@16 3 * Distributed under the Boost Software License, Version 1.0.
Chris@16 4 * (See accompanying file LICENSE_1_0.txt or copy at
Chris@16 5 * http://www.boost.org/LICENSE_1_0.txt)
Chris@16 6 */
Chris@16 7 /*!
Chris@16 8 * \file sinks.hpp
Chris@16 9 * \author Andrey Semashev
Chris@16 10 * \date 13.07.2009
Chris@16 11 *
Chris@16 12 * This header includes other Boost.Log headers with all sinks.
Chris@16 13 */
Chris@16 14
Chris@16 15 #ifndef BOOST_LOG_SINKS_HPP_INCLUDED_
Chris@16 16 #define BOOST_LOG_SINKS_HPP_INCLUDED_
Chris@16 17
Chris@16 18 #include <boost/log/detail/config.hpp>
Chris@16 19
Chris@16 20 #include <boost/log/sinks/sink.hpp>
Chris@16 21
Chris@16 22 #include <boost/log/sinks/unlocked_frontend.hpp>
Chris@16 23 #if !defined(BOOST_LOG_NO_THREADS)
Chris@16 24 #include <boost/log/sinks/sync_frontend.hpp>
Chris@16 25 #include <boost/log/sinks/async_frontend.hpp>
Chris@16 26 #include <boost/log/sinks/unbounded_fifo_queue.hpp>
Chris@16 27 #include <boost/log/sinks/unbounded_ordering_queue.hpp>
Chris@16 28 #include <boost/log/sinks/bounded_fifo_queue.hpp>
Chris@16 29 #include <boost/log/sinks/bounded_ordering_queue.hpp>
Chris@16 30 #include <boost/log/sinks/drop_on_overflow.hpp>
Chris@16 31 #include <boost/log/sinks/block_on_overflow.hpp>
Chris@16 32 #endif // !defined(BOOST_LOG_NO_THREADS)
Chris@16 33
Chris@16 34 #include <boost/log/sinks/syslog_backend.hpp>
Chris@16 35 #include <boost/log/sinks/text_file_backend.hpp>
Chris@16 36 #include <boost/log/sinks/text_multifile_backend.hpp>
Chris@16 37 #include <boost/log/sinks/text_ostream_backend.hpp>
Chris@16 38 #ifdef BOOST_WINDOWS
Chris@16 39 #include <boost/log/sinks/debug_output_backend.hpp>
Chris@16 40 #include <boost/log/sinks/event_log_backend.hpp>
Chris@16 41 #endif // BOOST_WINDOWS
Chris@16 42
Chris@16 43 #ifdef BOOST_HAS_PRAGMA_ONCE
Chris@16 44 #pragma once
Chris@16 45 #endif
Chris@16 46
Chris@16 47 #endif // BOOST_LOG_SINKS_HPP_INCLUDED_