-------------------------------------------------------------------------
| 54 | |
| 55 | //------------------------------------------------------------------------- |
| 56 | bool Wildcards::Match(const std::wstring& str) const |
| 57 | { |
| 58 | return std::regex_search(str, wildcars_); |
| 59 | } |
| 60 | |
| 61 | //------------------------------------------------------------------------- |
| 62 | std::wostream& operator<<(std::wostream& ostr, const Wildcards& wildcards) |