mirror of
https://codeberg.org/comaps/comaps
synced 2025-12-20 05:13:58 +00:00
committed by
Konstantin Pastbin
parent
c9cbb64f12
commit
76ffc99abd
25
libs/routing/transit_graph_loader.hpp
Normal file
25
libs/routing/transit_graph_loader.hpp
Normal file
@@ -0,0 +1,25 @@
|
||||
#pragma once
|
||||
|
||||
#include "routing/edge_estimator.hpp"
|
||||
#include "routing/index_graph.hpp"
|
||||
#include "routing/transit_graph.hpp"
|
||||
|
||||
#include "routing_common/num_mwm_id.hpp"
|
||||
|
||||
#include <memory>
|
||||
|
||||
namespace routing
|
||||
{
|
||||
class MwmDataSource;
|
||||
|
||||
class TransitGraphLoader
|
||||
{
|
||||
public:
|
||||
virtual ~TransitGraphLoader() = default;
|
||||
|
||||
virtual TransitGraph & GetTransitGraph(NumMwmId mwmId, IndexGraph & indexGraph) = 0;
|
||||
virtual void Clear() = 0;
|
||||
|
||||
static std::unique_ptr<TransitGraphLoader> Create(MwmDataSource & dataSource, std::shared_ptr<EdgeEstimator> estimator);
|
||||
};
|
||||
} // namespace routing
|
||||
Reference in New Issue
Block a user