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 default_attribute_names.hpp 9 * \author Andrey Semashev 10 * \date 15.01.2012 11 * 12 * \brief This header is the Boost.Log library implementation, see the library documentation 13 * at http://www.boost.org/doc/libs/release/libs/log/doc/html/index.html. 14 */ 15 16 #ifndef BOOST_LOG_DETAIL_DEFAULT_ATTRIBUTE_NAMES_HPP_INCLUDED_ 17 #define BOOST_LOG_DETAIL_DEFAULT_ATTRIBUTE_NAMES_HPP_INCLUDED_ 18 19 #include <boost/log/detail/config.hpp> 20 #include <boost/log/attributes/attribute_name.hpp> 21 #include <boost/log/detail/header.hpp> 22 23 #ifdef BOOST_HAS_PRAGMA_ONCE 24 #pragma once 25 #endif 26 27 namespace boost { 28 29 BOOST_LOG_OPEN_NAMESPACE 30 31 namespace aux { 32 33 namespace default_attribute_names { 34 35 BOOST_LOG_API attribute_name severity(); 36 BOOST_LOG_API attribute_name channel(); 37 BOOST_LOG_API attribute_name message(); 38 BOOST_LOG_API attribute_name line_id(); 39 BOOST_LOG_API attribute_name timestamp(); 40 BOOST_LOG_API attribute_name process_id(); 41 BOOST_LOG_API attribute_name thread_id(); 42 43 } // namespace default_attribute_names 44 45 } // namespace aux 46 47 BOOST_LOG_CLOSE_NAMESPACE // namespace log 48 49 } // namespace boost 50 51 #include <boost/log/detail/footer.hpp> 52 53 #endif // BOOST_LOG_DETAIL_DEFAULT_ATTRIBUTE_NAMES_HPP_INCLUDED_ 54