#ifndef MAP_MATCHING_SUB_MATCHING_HPP #define MAP_MATCHING_SUB_MATCHING_HPP #include "engine/phantom_node.hpp" #include namespace osrm { namespace engine { namespace map_matching { struct SubMatching { std::vector nodes; std::vector indices; std::vector alternatives_count; double confidence; }; } } } #endif