[storage, platform] Quick fix to master: added missed filex to index.

This commit is contained in:
Yuri Gorshenin 2015-10-16 11:17:34 +03:00
parent 0dd108f117
commit 8c42cf8920
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