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)
const {
48 return std::regex_match(tag_key, rule_key);
54 bool operator()(
const std::regex& rule_value,
const char* tag_value)
const {
55 return std::regex_match(tag_value, rule_value);
Namespace for everything in the Osmium library.
Definition: assembler.hpp:53
Definition: location.hpp:555