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

test_map_files_downloader.cpp « storage_tests « storage - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b6fffe4a7f73c82f5c49f7939f0ccbdbf0bb1921 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include "storage/storage_tests/test_map_files_downloader.hpp"

#include "std/string.hpp"
#include "std/vector.hpp"

namespace storage
{
void TestMapFilesDownloader::GetServersList(int64_t const mapVersion, string const & mapFileName,
                                            TServersListCallback const & callback)
{
  vector<string> urls = {"http://localhost:34568/unit_tests/"};
  callback(urls);
}
}  // namespace storage