Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-30 09:45:12

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   expressions.hpp
0009  * \author Andrey Semashev
0010  * \date   10.11.2012
0011  *
0012  * This header includes other Boost.Log headers with all template expression tools.
0013  */
0014 
0015 #ifndef BOOST_LOG_EXPRESSIONS_HPP_INCLUDED_
0016 #define BOOST_LOG_EXPRESSIONS_HPP_INCLUDED_
0017 
0018 #include <boost/log/detail/config.hpp>
0019 
0020 #include <boost/log/expressions/attr.hpp>
0021 #include <boost/log/expressions/keyword.hpp>
0022 #include <boost/log/expressions/message.hpp>
0023 #include <boost/log/expressions/record.hpp>
0024 
0025 #include <boost/log/expressions/predicates.hpp>
0026 #include <boost/log/expressions/formatters.hpp>
0027 
0028 #include <boost/log/expressions/filter.hpp>
0029 #include <boost/log/expressions/formatter.hpp>
0030 
0031 // Boost.Phoenix operators are likely to be used with Boost.Log expression nodes anyway
0032 #include <boost/phoenix/operator.hpp>
0033 
0034 #ifdef BOOST_HAS_PRAGMA_ONCE
0035 #pragma once
0036 #endif
0037 
0038 #endif // BOOST_LOG_EXPRESSIONS_HPP_INCLUDED_