]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/boost/log/common.hpp
update sources to v12.2.3
[ceph.git] / ceph / src / boost / boost / log / common.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 common.hpp
9 * \author Andrey Semashev
10 * \date 14.03.2009
11 *
12 * This header includes other Boost.Log headers that are commonly used in logging applications.
13 * Note that the header does not include any headers required to setup the library, as usually
14 * they aren't needed in more than one translation unit of the application.
15 */
16
17 #ifndef BOOST_LOG_COMMON_HPP_INCLUDED_
18 #define BOOST_LOG_COMMON_HPP_INCLUDED_
19
20 #include <boost/log/detail/config.hpp>
21
22 #include <boost/log/core.hpp>
23
24 #include <boost/log/sources/global_logger_storage.hpp>
25 #include <boost/log/sources/record_ostream.hpp>
26
27 #include <boost/log/sources/basic_logger.hpp>
28 #include <boost/log/sources/severity_logger.hpp>
29 #include <boost/log/sources/channel_logger.hpp>
30 #include <boost/log/sources/severity_channel_logger.hpp>
31 #include <boost/log/sources/exception_handler_feature.hpp>
32
33 #include <boost/log/attributes/constant.hpp>
34 #include <boost/log/attributes/named_scope.hpp>
35 #include <boost/log/attributes/scoped_attribute.hpp>
36
37 #ifdef BOOST_HAS_PRAGMA_ONCE
38 #pragma once
39 #endif
40
41 #endif // BOOST_LOG_COMMON_HPP_INCLUDED_