#ifndef OSRM_CONTRACTOR_QUERY_GRAPH_HPP #define OSRM_CONTRACTOR_QUERY_GRAPH_HPP #include "contractor/query_edge.hpp" #include "util/static_graph.hpp" #include "util/typedefs.hpp" namespace osrm { namespace contractor { namespace detail { template using QueryGraph = util::StaticGraph; } // namespace detail using QueryGraph = detail::QueryGraph; using QueryGraphView = detail::QueryGraph; } // namespace contractor } // namespace osrm #endif // QUERYEDGE_HPP