1 | #pragma once |
---|---|
2 | #include <string> |
3 | #include <vector> |
4 | |
5 | namespace DB |
6 | { |
7 | /* Parse globs in string and make a regexp for it. |
8 | */ |
9 | std::string makeRegexpPatternFromGlobs(const std::string & path); |
10 | } |
11 |
1 | #pragma once |
---|---|
2 | #include <string> |
3 | #include <vector> |
4 | |
5 | namespace DB |
6 | { |
7 | /* Parse globs in string and make a regexp for it. |
8 | */ |
9 | std::string makeRegexpPatternFromGlobs(const std::string & path); |
10 | } |
11 |