#ifndef OSMR_CONTRACTOR_CONTRACTED_METRIC_HPP #define OSMR_CONTRACTOR_CONTRACTED_METRIC_HPP #include "contractor/query_graph.hpp" namespace osrm { namespace contractor { namespace detail { template struct ContractedMetric { detail::QueryGraph graph; std::vector> edge_filter; }; } using ContractedMetric = detail::ContractedMetric; using ContractedMetricView = detail::ContractedMetric; } } #endif