File indexing completed on 2025-01-18 09:39:29
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
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