Back to home page

EIC code displayed by LXR

 
 

    


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

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   functional.hpp
0009  * \author Andrey Semashev
0010  * \date   30.03.2008
0011  *
0012  * This header includes all functional helpers.
0013  */
0014 
0015 #ifndef BOOST_LOG_UTILITY_FUNCTIONAL_HPP_INCLUDED_
0016 #define BOOST_LOG_UTILITY_FUNCTIONAL_HPP_INCLUDED_
0017 
0018 #include <boost/log/detail/config.hpp>
0019 
0020 #include <boost/log/utility/functional/logical.hpp>
0021 #include <boost/log/utility/functional/in_range.hpp>
0022 #include <boost/log/utility/functional/begins_with.hpp>
0023 #include <boost/log/utility/functional/ends_with.hpp>
0024 #include <boost/log/utility/functional/contains.hpp>
0025 #include <boost/log/utility/functional/matches.hpp>
0026 
0027 #include <boost/log/utility/functional/nop.hpp>
0028 #include <boost/log/utility/functional/bind_assign.hpp>
0029 #include <boost/log/utility/functional/bind_output.hpp>
0030 #include <boost/log/utility/functional/bind_to_log.hpp>
0031 #include <boost/log/utility/functional/bind.hpp>
0032 #include <boost/log/utility/functional/fun_ref.hpp>
0033 #include <boost/log/utility/functional/as_action.hpp>
0034 #include <boost/log/utility/functional/save_result.hpp>
0035 
0036 #ifdef BOOST_HAS_PRAGMA_ONCE
0037 #pragma once
0038 #endif
0039 
0040 #endif // BOOST_LOG_UTILITY_FUNCTIONAL_HPP_INCLUDED_