Merge branch 'master' of ssh://git.code.sf.net/p/foam-extend/foam-extend-3.2
[foam-extend-3.2.git] / src / foam / primitives / Lists / wordReListMatcher.H
blobaa72d9c034f895fb86fa20985a7bcb856050d897
1 /*---------------------------------------------------------------------------*\
2   =========                 |
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 -------------------------------------------------------------------------------
8 License
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/>.
24 Class
25     Foam::wordReListMatcher
27 Description
28     A wrapper for matching a List of wordRe.
30 Note
31     The constructor should remain non-explicit. This allows automatic
32     conversion from UList\<wordRe\> to wordReListMatcher in search
33     functions.
35 SourceFiles
36     wordReListMatcherI.H
38 \*---------------------------------------------------------------------------*/
40 #ifndef wordReListMatcher_H
41 #define wordReListMatcher_H
43 #include "wordReList.H"
45 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
47 namespace Foam
50 /*---------------------------------------------------------------------------*\
51                       Class wordReListMatcher Declaration
52 \*---------------------------------------------------------------------------*/
54 class wordReListMatcher
56     // Private data
58         //- Reference to underlying list
59         const UList<wordRe>& reList_;
61 public:
63     // Constructors
65         //- Construct from a List of wordRe
66         inline wordReListMatcher(const UList<wordRe>&);
69     // Member Functions
71         // Access
73             inline label size() const;
74             inline bool  empty() const;
76             //- Return underlying list of wordRe
77             inline const UList<wordRe>& operator()() const;
80     // Searching
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"
98 #endif
100 // ************************************************************************* //