-bool wxRegEx::Matches(const wxChar *str, int flags, size_t len) const
-{
- wxCHECK_MSG( IsValid(), false, _T("must successfully Compile() first") );
- (void)len;
-
- return m_impl->Matches(WXREGEX_CHAR(str), flags WXREGEX_IF_NEED_LEN(len));
-}
-
-bool wxRegEx::Matches(const wxChar *str, int flags) const