Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:39:24

0001 /*
0002  *          Copyright Andrey Semashev 2007 - 2015.
0003  * Distributed under the Boost Software License, Version 1.0.
0004  *    (See accompanying file LICENSE_1_0.txt or copy at
0005  *          http://www.boost.org/LICENSE_1_0.txt)
0006  */
0007 /*!
0008  * \file   formatters.hpp
0009  * \author Andrey Semashev
0010  * \date   10.11.2012
0011  *
0012  * The header includes all template expression formatters.
0013  */
0014 
0015 #ifndef BOOST_LOG_EXPRESSIONS_FORMATTERS_HPP_INCLUDED_
0016 #define BOOST_LOG_EXPRESSIONS_FORMATTERS_HPP_INCLUDED_
0017 
0018 #include <boost/log/detail/config.hpp>
0019 
0020 #include <boost/log/expressions/formatters/stream.hpp>
0021 #include <boost/log/expressions/formatters/format.hpp>
0022 
0023 #include <boost/log/expressions/formatters/date_time.hpp>
0024 #include <boost/log/expressions/formatters/named_scope.hpp>
0025 
0026 #include <boost/log/expressions/formatters/char_decorator.hpp>
0027 #include <boost/log/expressions/formatters/xml_decorator.hpp>
0028 #include <boost/log/expressions/formatters/csv_decorator.hpp>
0029 #include <boost/log/expressions/formatters/c_decorator.hpp>
0030 #include <boost/log/expressions/formatters/max_size_decorator.hpp>
0031 
0032 #include <boost/log/expressions/formatters/if.hpp>
0033 #include <boost/log/expressions/formatters/wrap_formatter.hpp>
0034 #include <boost/log/expressions/formatters/auto_newline.hpp>
0035 
0036 #ifdef BOOST_HAS_PRAGMA_ONCE
0037 #pragma once
0038 #endif
0039 
0040 #endif // BOOST_LOG_EXPRESSIONS_FORMATTERS_HPP_INCLUDED_