Merge pull request #262 from ygorshenin/quick-fix-to-master

[storage, platform] Quick fix to master: added missed filex to index.
This commit is contained in:
Lev Dragunov 2015-10-16 11:22:18 +03:00
commit 888aa5166e
2 changed files with 28 additions and 0 deletions

View file

@ -0,0 +1,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

View file

@ -0,0 +1,14 @@
#pragma once
#include "storage/http_map_files_downloader.hpp"
namespace storage
{
class TestMapFilesDownloader : public HttpMapFilesDownloader
{
public:
// MapFilesDownloader overrides:
void GetServersList(int64_t const mapVersion, string const & mapFileName,
TServersListCallback const & callback) override;
};
} // namespace storage