]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/log/include/boost/log/utility/functional.hpp
bump version to 12.2.2-pve1
[ceph.git] / ceph / src / boost / libs / log / include / boost / log / utility / functional.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 functional.hpp
9 * \author Andrey Semashev
10 * \date 30.03.2008
11 *
12 * This header includes all functional helpers.
13 */
14
15#ifndef BOOST_LOG_UTILITY_FUNCTIONAL_HPP_INCLUDED_
16#define BOOST_LOG_UTILITY_FUNCTIONAL_HPP_INCLUDED_
17
18#include <boost/log/detail/config.hpp>
19
20#include <boost/log/utility/functional/logical.hpp>
21#include <boost/log/utility/functional/in_range.hpp>
22#include <boost/log/utility/functional/begins_with.hpp>
23#include <boost/log/utility/functional/ends_with.hpp>
24#include <boost/log/utility/functional/contains.hpp>
25#include <boost/log/utility/functional/matches.hpp>
26
27#include <boost/log/utility/functional/nop.hpp>
28#include <boost/log/utility/functional/bind_assign.hpp>
29#include <boost/log/utility/functional/bind_output.hpp>
30#include <boost/log/utility/functional/bind_to_log.hpp>
31#include <boost/log/utility/functional/bind.hpp>
32#include <boost/log/utility/functional/fun_ref.hpp>
33#include <boost/log/utility/functional/as_action.hpp>
34#include <boost/log/utility/functional/save_result.hpp>
35
36#ifdef BOOST_HAS_PRAGMA_ONCE
37#pragma once
38#endif
39
40#endif // BOOST_LOG_UTILITY_FUNCTIONAL_HPP_INCLUDED_