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   attributes.hpp
0009  * \author Andrey Semashev
0010  * \date   13.07.2009
0011  *
0012  * This header includes other Boost.Log headers with all attributes.
0013  */
0014 
0015 #ifndef BOOST_LOG_ATTRIBUTES_HPP_INCLUDED_
0016 #define BOOST_LOG_ATTRIBUTES_HPP_INCLUDED_
0017 
0018 #include <boost/log/detail/config.hpp>
0019 
0020 #include <boost/log/attributes/attribute.hpp>
0021 #include <boost/log/attributes/clock.hpp>
0022 #include <boost/log/attributes/constant.hpp>
0023 #include <boost/log/attributes/counter.hpp>
0024 #include <boost/log/attributes/function.hpp>
0025 #include <boost/log/attributes/mutable_constant.hpp>
0026 #include <boost/log/attributes/named_scope.hpp>
0027 #include <boost/log/attributes/timer.hpp>
0028 #include <boost/log/attributes/current_process_name.hpp>
0029 #include <boost/log/attributes/current_process_id.hpp>
0030 #if !defined(BOOST_LOG_NO_THREADS)
0031 #include <boost/log/attributes/current_thread_id.hpp>
0032 #endif
0033 
0034 #ifdef BOOST_HAS_PRAGMA_ONCE
0035 #pragma once
0036 #endif
0037 
0038 #endif // BOOST_LOG_ATTRIBUTES_HPP_INCLUDED_