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   setup.hpp
0009  * \author Andrey Semashev
0010  * \date   16.02.2013
0011  *
0012  * This header includes all library setup helpers.
0013  */
0014 
0015 #ifndef BOOST_LOG_UTILITY_SETUP_HPP_INCLUDED_
0016 #define BOOST_LOG_UTILITY_SETUP_HPP_INCLUDED_
0017 
0018 #include <boost/log/detail/setup_config.hpp>
0019 
0020 #include <boost/log/utility/setup/common_attributes.hpp>
0021 
0022 #include <boost/log/utility/setup/console.hpp>
0023 #include <boost/log/utility/setup/file.hpp>
0024 
0025 #include <boost/log/utility/setup/from_settings.hpp>
0026 #include <boost/log/utility/setup/from_stream.hpp>
0027 
0028 #include <boost/log/utility/setup/settings.hpp>
0029 #include <boost/log/utility/setup/settings_parser.hpp>
0030 #include <boost/log/utility/setup/filter_parser.hpp>
0031 #include <boost/log/utility/setup/formatter_parser.hpp>
0032 
0033 #ifdef BOOST_HAS_PRAGMA_ONCE
0034 #pragma once
0035 #endif
0036 
0037 #endif // BOOST_LOG_UTILITY_SETUP_HPP_INCLUDED_