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   predicates.hpp
0009  * \author Andrey Semashev
0010  * \date   29.01.2012
0011  *
0012  * The header includes all template expression predicates.
0013  */
0014 
0015 #ifndef BOOST_LOG_EXPRESSIONS_PREDICATES_HPP_INCLUDED_
0016 #define BOOST_LOG_EXPRESSIONS_PREDICATES_HPP_INCLUDED_
0017 
0018 #include <boost/log/detail/config.hpp>
0019 
0020 #include <boost/log/expressions/predicates/has_attr.hpp>
0021 #include <boost/log/expressions/predicates/begins_with.hpp>
0022 #include <boost/log/expressions/predicates/ends_with.hpp>
0023 #include <boost/log/expressions/predicates/contains.hpp>
0024 #include <boost/log/expressions/predicates/matches.hpp>
0025 #include <boost/log/expressions/predicates/is_in_range.hpp>
0026 
0027 #include <boost/log/expressions/predicates/is_debugger_present.hpp>
0028 #include <boost/log/expressions/predicates/channel_severity_filter.hpp>
0029 
0030 #ifdef BOOST_HAS_PRAGMA_ONCE
0031 #pragma once
0032 #endif
0033 
0034 #endif // BOOST_LOG_EXPRESSIONS_PREDICATES_HPP_INCLUDED_