Welcome to mirror list, hosted at ThFree Co, Russian Federation.

transit_graph_loader.hpp « routing - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bd37eb9a1460e02e091f51a9544cdeed494bca1e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#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>

class DataSource;

namespace routing
{
class TransitGraphLoader
{
public:
  virtual ~TransitGraphLoader() = default;

  virtual TransitGraph & GetTransitGraph(NumMwmId mwmId, IndexGraph & indexGraph) = 0;
  virtual void Clear() = 0;

  static std::unique_ptr<TransitGraphLoader> Create(DataSource & dataSource,
                                                    std::shared_ptr<NumMwmIds> numMwmIds,
                                                    std::shared_ptr<EdgeEstimator> estimator);
};
}  // namespace routing