predicates.hpp 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  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. #ifndef BOOST_LOG_EXPRESSIONS_PREDICATES_HPP_INCLUDED_
  15. #define BOOST_LOG_EXPRESSIONS_PREDICATES_HPP_INCLUDED_
  16. #include <boost/log/detail/config.hpp>
  17. #include <boost/log/expressions/predicates/has_attr.hpp>
  18. #include <boost/log/expressions/predicates/begins_with.hpp>
  19. #include <boost/log/expressions/predicates/ends_with.hpp>
  20. #include <boost/log/expressions/predicates/contains.hpp>
  21. #include <boost/log/expressions/predicates/matches.hpp>
  22. #include <boost/log/expressions/predicates/is_in_range.hpp>
  23. #include <boost/log/expressions/predicates/is_debugger_present.hpp>
  24. #include <boost/log/expressions/predicates/channel_severity_filter.hpp>
  25. #ifdef BOOST_HAS_PRAGMA_ONCE
  26. #pragma once
  27. #endif
  28. #endif // BOOST_LOG_EXPRESSIONS_PREDICATES_HPP_INCLUDED_