]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/log/include/boost/log/detail/default_attribute_names.hpp
bump version to 12.2.2-pve1
[ceph.git] / ceph / src / boost / libs / log / include / boost / log / detail / default_attribute_names.hpp
CommitLineData
7c673cae
FG
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
27namespace boost {
28
29BOOST_LOG_OPEN_NAMESPACE
30
31namespace aux {
32
33namespace default_attribute_names {
34
35BOOST_LOG_API attribute_name severity();
36BOOST_LOG_API attribute_name channel();
37BOOST_LOG_API attribute_name message();
38BOOST_LOG_API attribute_name line_id();
39BOOST_LOG_API attribute_name timestamp();
40BOOST_LOG_API attribute_name process_id();
41BOOST_LOG_API attribute_name thread_id();
42
43} // namespace default_attribute_names
44
45} // namespace aux
46
47BOOST_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_