1 #ifndef OSMIUM_TAGS_REGEX_FILTER_HPP
2 #define OSMIUM_TAGS_REGEX_FILTER_HPP
47 bool operator()(
const std::regex& rule_key,
const char* tag_key) {
48 return std::regex_match(tag_key, rule_key);
54 bool operator()(
const std::regex& rule_value,
const char* tag_value) {
55 return std::regex_match(tag_value, rule_value);
65 #endif // OSMIUM_TAGS_REGEX_FILTER_HPP
Definition: reader_iterator.hpp:39
Namespace for everything in the Osmium library.
Definition: assembler.hpp:73