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/features_road_graph.hpp')
-rw-r--r--routing/features_road_graph.hpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/routing/features_road_graph.hpp b/routing/features_road_graph.hpp
index 59bcc98567..4214fa72ce 100644
--- a/routing/features_road_graph.hpp
+++ b/routing/features_road_graph.hpp
@@ -16,7 +16,7 @@
#include "std/unique_ptr.hpp"
#include "std/vector.hpp"
-class DataSourceBase;
+class DataSource;
class FeatureType;
namespace routing
@@ -63,7 +63,7 @@ private:
};
public:
- FeaturesRoadGraph(DataSourceBase const & dataSource, IRoadGraph::Mode mode,
+ FeaturesRoadGraph(DataSource const & dataSource, IRoadGraph::Mode mode,
shared_ptr<VehicleModelFactoryInterface> vehicleModelFactory);
static int GetStreetReadScale();
@@ -89,7 +89,7 @@ private:
struct Value
{
Value() = default;
- Value(DataSourceBase const & dataSource, MwmSet::MwmHandle handle);
+ Value(DataSource const & dataSource, MwmSet::MwmHandle handle);
bool IsAlive() const { return m_mwmHandle.IsAlive(); }
@@ -112,7 +112,7 @@ private:
Value const & LockMwm(MwmSet::MwmId const & mwmId) const;
- DataSourceBase const & m_dataSource;
+ DataSource const & m_dataSource;
IRoadGraph::Mode const m_mode;
mutable RoadInfoCache m_cache;
mutable CrossCountryVehicleModel m_vehicleModel;