Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:39:29

0001 /*
0002  *          Copyright Andrey Semashev 2007 - 2015.
0003  * Distributed under the Boost Software License, Version 1.0.
0004  *    (See accompanying file LICENSE_1_0.txt or copy at
0005  *          http://www.boost.org/LICENSE_1_0.txt)
0006  */
0007 /*!
0008  * \file   common.hpp
0009  * \author Andrey Semashev
0010  * \date   14.03.2009
0011  *
0012  * This header includes other Boost.Log headers that are commonly used in logging applications.
0013  * Note that the header does not include any headers required to setup the library, as usually
0014  * they aren't needed in more than one translation unit of the application.
0015  */
0016 
0017 #ifndef BOOST_LOG_COMMON_HPP_INCLUDED_
0018 #define BOOST_LOG_COMMON_HPP_INCLUDED_
0019 
0020 #include <boost/log/detail/config.hpp>
0021 
0022 #include <boost/log/core.hpp>
0023 
0024 #include <boost/log/sources/global_logger_storage.hpp>
0025 #include <boost/log/sources/record_ostream.hpp>
0026 
0027 #include <boost/log/sources/basic_logger.hpp>
0028 #include <boost/log/sources/severity_logger.hpp>
0029 #include <boost/log/sources/channel_logger.hpp>
0030 #include <boost/log/sources/severity_channel_logger.hpp>
0031 #include <boost/log/sources/exception_handler_feature.hpp>
0032 
0033 #include <boost/log/attributes/constant.hpp>
0034 #include <boost/log/attributes/named_scope.hpp>
0035 #include <boost/log/attributes/scoped_attribute.hpp>
0036 
0037 #ifdef BOOST_HAS_PRAGMA_ONCE
0038 #pragma once
0039 #endif
0040 
0041 #endif // BOOST_LOG_COMMON_HPP_INCLUDED_