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