]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/boost/log/expressions/formatters.hpp
import new upstream nautilus stable release 14.2.8
[ceph.git] / ceph / src / boost / boost / log / expressions / formatters.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 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>
92f5a8d4 34#include <boost/log/expressions/formatters/auto_newline.hpp>
7c673cae
FG
35
36#ifdef BOOST_HAS_PRAGMA_ONCE
37#pragma once
38#endif
39
40#endif // BOOST_LOG_EXPRESSIONS_FORMATTERS_HPP_INCLUDED_