]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/log/include/boost/log/expressions/formatters.hpp
bump version to 12.2.2-pve1
[ceph.git] / ceph / src / boost / libs / log / include / boost / log / expressions / formatters.hpp
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 formatters.hpp
9 * \author Andrey Semashev
10 * \date 10.11.2012
11 *
12 * The header includes all template expression formatters.
13 */
14
15 #ifndef BOOST_LOG_EXPRESSIONS_FORMATTERS_HPP_INCLUDED_
16 #define BOOST_LOG_EXPRESSIONS_FORMATTERS_HPP_INCLUDED_
17
18 #include <boost/log/detail/config.hpp>
19
20 #include <boost/log/expressions/formatters/stream.hpp>
21 #include <boost/log/expressions/formatters/format.hpp>
22
23 #include <boost/log/expressions/formatters/date_time.hpp>
24 #include <boost/log/expressions/formatters/named_scope.hpp>
25
26 #include <boost/log/expressions/formatters/char_decorator.hpp>
27 #include <boost/log/expressions/formatters/xml_decorator.hpp>
28 #include <boost/log/expressions/formatters/csv_decorator.hpp>
29 #include <boost/log/expressions/formatters/c_decorator.hpp>
30 #include <boost/log/expressions/formatters/max_size_decorator.hpp>
31
32 #include <boost/log/expressions/formatters/if.hpp>
33 #include <boost/log/expressions/formatters/wrap_formatter.hpp>
34
35 #ifdef BOOST_HAS_PRAGMA_ONCE
36 #pragma once
37 #endif
38
39 #endif // BOOST_LOG_EXPRESSIONS_FORMATTERS_HPP_INCLUDED_