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/routing_integration_tests/routing_test_tools.cpp')
-rw-r--r--routing/routing_integration_tests/routing_test_tools.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/routing/routing_integration_tests/routing_test_tools.cpp b/routing/routing_integration_tests/routing_test_tools.cpp
index 8a4275689c..688115296a 100644
--- a/routing/routing_integration_tests/routing_test_tools.cpp
+++ b/routing/routing_integration_tests/routing_test_tools.cpp
@@ -41,7 +41,7 @@ using namespace routing;
using namespace routing_test;
using TRouterFactory =
- function<unique_ptr<IRouter>(DataSourceBase & dataSource, TCountryFileFn const & countryFileFn,
+ function<unique_ptr<IRouter>(DataSource & dataSource, TCountryFileFn const & countryFileFn,
shared_ptr<NumMwmIds> numMwmIds)>;
namespace
@@ -85,7 +85,7 @@ namespace integration
return storage::CountryInfoReader::CreateCountryInfoReader(platform);
}
- unique_ptr<IndexRouter> CreateVehicleRouter(DataSourceBase & dataSource,
+ unique_ptr<IndexRouter> CreateVehicleRouter(DataSource & dataSource,
storage::CountryInfoGetter const & infoGetter,
traffic::TrafficCache const & trafficCache,
vector<LocalCountryFile> const & localFiles,
@@ -120,7 +120,7 @@ namespace integration
return indexRouter;
}
- unique_ptr<IRouter> CreateAStarRouter(DataSourceBase & dataSource,
+ unique_ptr<IRouter> CreateAStarRouter(DataSource & dataSource,
storage::CountryInfoGetter const & infoGetter,
vector<LocalCountryFile> const & localFiles,
TRouterFactory const & routerFactory)