Libosmium
2.15.5
Fast and flexible C++ library for working with OpenStreetMap data
|
Go to the documentation of this file. 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);
66 #endif // OSMIUM_TAGS_REGEX_FILTER_HPP
Namespace for everything in the Osmium library.
Definition: assembler.hpp:53
Definition: location.hpp:551