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