Files
comaps/libs/storage/map_files_downloader_with_ping.hpp
Alexander Borsuk 76ffc99abd New cpp folder structure
Signed-off-by: Alexander Borsuk <me@alex.bio>
2025-08-14 20:52:04 +07:00

14 lines
280 B
C++

#pragma once
#include "storage/map_files_downloader.hpp"
namespace storage
{
class MapFilesDownloaderWithPing : public MapFilesDownloader
{
public:
// MapFilesDownloader overrides:
void GetMetaConfig(MetaConfigCallback const & callback) override;
};
} // namespace storage