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

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'routing/transit_graph_loader.hpp')
-rw-r--r--routing/transit_graph_loader.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/routing/transit_graph_loader.hpp b/routing/transit_graph_loader.hpp
index a4fdbcdfb6..bd37eb9a14 100644
--- a/routing/transit_graph_loader.hpp
+++ b/routing/transit_graph_loader.hpp
@@ -8,7 +8,7 @@
#include <memory>
-class DataSourceBase;
+class DataSource;
namespace routing
{
@@ -20,7 +20,7 @@ public:
virtual TransitGraph & GetTransitGraph(NumMwmId mwmId, IndexGraph & indexGraph) = 0;
virtual void Clear() = 0;
- static std::unique_ptr<TransitGraphLoader> Create(DataSourceBase & dataSource,
+ static std::unique_ptr<TransitGraphLoader> Create(DataSource & dataSource,
std::shared_ptr<NumMwmIds> numMwmIds,
std::shared_ptr<EdgeEstimator> estimator);
};