|
Crazy Eddie's GUI System 0.8.7
|
Implementation of RegexMatcher using std::regex. More...
#include <StdRegexMatcher.h>
Inheritance diagram for CEGUI::StdRegexMatcher:
Collaboration diagram for CEGUI::StdRegexMatcher:Public Member Functions | |
| StdRegexMatcher () | |
| Constructor. | |
| ~StdRegexMatcher () | |
| Destructor. | |
| void | setRegexString (const String ®ex) |
| Set the regex string that will be matched against. | |
| const String & | getRegexString () const |
| Return reference to current regex string set. | |
| bool | matchRegex (const String &str) const |
| MatchState | getMatchStateOfString (const String &str) const |
| Return the MatchState result for the given String. | |
Public Member Functions inherited from CEGUI::RegexMatcher | |
| virtual | ~RegexMatcher () |
| Destructor. | |
Additional Inherited Members | |
Public Types inherited from CEGUI::RegexMatcher | |
| enum | MatchState { MS_VALID , MS_INVALID , MS_PARTIAL } |
| Enumeration of possible states when cosidering a regex match. More... | |
Implementation of RegexMatcher using std::regex.
|
virtual |
Return the MatchState result for the given String.
Implements CEGUI::RegexMatcher.
Return reference to current regex string set.
Implements CEGUI::RegexMatcher.
Set the regex string that will be matched against.
Implements CEGUI::RegexMatcher.