1 /*---------------------------------------------------------------------------*\
3 \\ / F ield | foam-extend: Open Source CFD
4 \\ / O peration | Version: 3.2
5 \\ / A nd | Web: http://www.foam-extend.org
6 \\/ M anipulation | For copyright notice see file Copyright
7 -------------------------------------------------------------------------------
9 This file is part of foam-extend.
11 foam-extend is free software: you can redistribute it and/or modify it
12 under the terms of the GNU General Public License as published by the
13 Free Software Foundation, either version 3 of the License, or (at your
14 option) any later version.
16 foam-extend is distributed in the hope that it will be useful, but
17 WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 General Public License for more details.
21 You should have received a copy of the GNU General Public License
22 along with foam-extend. If not, see <http://www.gnu.org/licenses/>.
25 Foam::wordReListMatcher
28 A wrapper for matching a List of wordRe.
31 The constructor should remain non-explicit. This allows automatic
32 conversion from UList\<wordRe\> to wordReListMatcher in search
38 \*---------------------------------------------------------------------------*/
40 #ifndef wordReListMatcher_H
41 #define wordReListMatcher_H
43 #include "wordReList.H"
45 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
50 /*---------------------------------------------------------------------------*\
51 Class wordReListMatcher Declaration
52 \*---------------------------------------------------------------------------*/
54 class wordReListMatcher
58 //- Reference to underlying list
59 const UList<wordRe>& reList_;
65 //- Construct from a List of wordRe
66 inline wordReListMatcher(const UList<wordRe>&);
73 inline label size() const;
74 inline bool empty() const;
76 //- Return underlying list of wordRe
77 inline const UList<wordRe>& operator()() const;
82 //- Return true if string matches any of the regular expressions
83 // Smart match as regular expression or as a string.
84 // Optionally specify a literal match only.
85 inline bool match(const string&, bool literalMatch=false) const;
90 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
92 } // End namespace Foam
94 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
96 #include "wordReListMatcherI.H"
100 // ************************************************************************* //