Mercurial > hg > vamp-build-and-test
annotate DEPENDENCIES/generic/include/boost/algorithm/string/predicate_facade.hpp @ 125:34e428693f5d vext
Vext -> Repoint
author | Chris Cannam |
---|---|
date | Thu, 14 Jun 2018 11:15:39 +0100 |
parents | 2665513ce2d3 |
children |
rev | line source |
---|---|
Chris@16 | 1 // Boost string_algo library predicate_facade.hpp header file ---------------------------// |
Chris@16 | 2 |
Chris@16 | 3 // Copyright Pavol Droba 2002-2003. |
Chris@16 | 4 // |
Chris@16 | 5 // Distributed under the Boost Software License, Version 1.0. |
Chris@16 | 6 // (See accompanying file LICENSE_1_0.txt or copy at |
Chris@16 | 7 // http://www.boost.org/LICENSE_1_0.txt) |
Chris@16 | 8 |
Chris@16 | 9 // See http://www.boost.org/ for updates, documentation, and revision history. |
Chris@16 | 10 |
Chris@16 | 11 #ifndef BOOST_STRING_PREDICATE_FACADE_HPP |
Chris@16 | 12 #define BOOST_STRING_PREDICATE_FACADE_HPP |
Chris@16 | 13 |
Chris@16 | 14 #include <boost/algorithm/string/config.hpp> |
Chris@16 | 15 |
Chris@16 | 16 /* |
Chris@16 | 17 \file boost/algorith/string/predicate_facade.hpp |
Chris@16 | 18 This file contains predicate_facade definition. This template class is used |
Chris@16 | 19 to identify classification predicates, so they can be combined using |
Chris@16 | 20 composition operators. |
Chris@16 | 21 */ |
Chris@16 | 22 |
Chris@16 | 23 namespace boost { |
Chris@16 | 24 namespace algorithm { |
Chris@16 | 25 |
Chris@16 | 26 // predicate facade ------------------------------------------------------// |
Chris@16 | 27 |
Chris@16 | 28 //! Predicate facade |
Chris@16 | 29 /*! |
Chris@16 | 30 This class allows to recognize classification |
Chris@16 | 31 predicates, so that they can be combined using |
Chris@16 | 32 composition operators. |
Chris@16 | 33 Every classification predicate must be derived from this class. |
Chris@16 | 34 */ |
Chris@16 | 35 template<typename Derived> |
Chris@16 | 36 struct predicate_facade {}; |
Chris@16 | 37 |
Chris@16 | 38 } // namespace algorithm |
Chris@16 | 39 } // namespace boost |
Chris@16 | 40 |
Chris@16 | 41 |
Chris@16 | 42 #endif // BOOST_STRING_CLASSIFICATION_DETAIL_HPP |