---------------------------------------------------------------------
| 39 | { |
| 40 | //--------------------------------------------------------------------- |
| 41 | const Wildcards* MatchAny( |
| 42 | const std::wstring& str, |
| 43 | const std::vector<Wildcards>& wildcardsCollection) |
| 44 | { |
| 45 | |
| 46 | for (const auto& wildcards : wildcardsCollection) |
| 47 | { |
| 48 | if (wildcards.Match(str)) |
| 49 | return &wildcards; |
| 50 | } |
| 51 | |
| 52 | return nullptr; |
| 53 | } |
| 54 | |
| 55 | //--------------------------------------------------------------------- |
| 56 | std::vector<Wildcards> BuildWildcards( |