sinks.hpp 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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. #ifndef BOOST_LOG_SINKS_HPP_INCLUDED_
  15. #define BOOST_LOG_SINKS_HPP_INCLUDED_
  16. #include <boost/log/detail/config.hpp>
  17. #include <boost/log/sinks/sink.hpp>
  18. #include <boost/log/sinks/unlocked_frontend.hpp>
  19. #if !defined(BOOST_LOG_NO_THREADS)
  20. #include <boost/log/sinks/sync_frontend.hpp>
  21. #include <boost/log/sinks/async_frontend.hpp>
  22. #include <boost/log/sinks/unbounded_fifo_queue.hpp>
  23. #include <boost/log/sinks/unbounded_ordering_queue.hpp>
  24. #include <boost/log/sinks/bounded_fifo_queue.hpp>
  25. #include <boost/log/sinks/bounded_ordering_queue.hpp>
  26. #include <boost/log/sinks/drop_on_overflow.hpp>
  27. #include <boost/log/sinks/block_on_overflow.hpp>
  28. #endif // !defined(BOOST_LOG_NO_THREADS)
  29. #include <boost/log/sinks/syslog_backend.hpp>
  30. #include <boost/log/sinks/text_file_backend.hpp>
  31. #include <boost/log/sinks/text_ipc_message_queue_backend.hpp>
  32. #include <boost/log/sinks/text_multifile_backend.hpp>
  33. #include <boost/log/sinks/text_ostream_backend.hpp>
  34. #ifdef BOOST_WINDOWS
  35. #include <boost/log/sinks/debug_output_backend.hpp>
  36. #include <boost/log/sinks/event_log_backend.hpp>
  37. #endif // BOOST_WINDOWS
  38. #ifdef BOOST_HAS_PRAGMA_ONCE
  39. #pragma once
  40. #endif
  41. #endif // BOOST_LOG_SINKS_HPP_INCLUDED_