---------------------------------------------------------------------
| 54 | |
| 55 | //--------------------------------------------------------------------- |
| 56 | std::vector<Wildcards> BuildWildcards( |
| 57 | const std::vector<std::wstring>& regexesStr, |
| 58 | bool isRegexCaseSensitiv) |
| 59 | { |
| 60 | std::vector<Wildcards> wildcardsCollection; |
| 61 | |
| 62 | for (const auto& regexStr : regexesStr) |
| 63 | wildcardsCollection.emplace_back(regexStr, isRegexCaseSensitiv); |
| 64 | |
| 65 | return wildcardsCollection; |
| 66 | } |
| 67 | } |
| 68 | |
| 69 | //------------------------------------------------------------------------- |