]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/log/include/boost/log/expressions/predicates.hpp
bump version to 12.2.2-pve1
[ceph.git] / ceph / src / boost / libs / log / include / boost / log / expressions / predicates.hpp
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 predicates.hpp
9 * \author Andrey Semashev
10 * \date 29.01.2012
11 *
12 * The header includes all template expression predicates.
13 */
14
15 #ifndef BOOST_LOG_EXPRESSIONS_PREDICATES_HPP_INCLUDED_
16 #define BOOST_LOG_EXPRESSIONS_PREDICATES_HPP_INCLUDED_
17
18 #include <boost/log/detail/config.hpp>
19
20 #include <boost/log/expressions/predicates/has_attr.hpp>
21 #include <boost/log/expressions/predicates/begins_with.hpp>
22 #include <boost/log/expressions/predicates/ends_with.hpp>
23 #include <boost/log/expressions/predicates/contains.hpp>
24 #include <boost/log/expressions/predicates/matches.hpp>
25 #include <boost/log/expressions/predicates/is_in_range.hpp>
26
27 #include <boost/log/expressions/predicates/is_debugger_present.hpp>
28 #include <boost/log/expressions/predicates/channel_severity_filter.hpp>
29
30 #ifdef BOOST_HAS_PRAGMA_ONCE
31 #pragma once
32 #endif
33
34 #endif // BOOST_LOG_EXPRESSIONS_PREDICATES_HPP_INCLUDED_