This repository has been archived on 2025-03-22. You can view files and clone it, but cannot push or open issues or pull requests.
organicmaps-tmp/platform/country_defines.hpp

20 lines
349 B
C++

#pragma once
#include <cstdint>
#include <string>
#include <utility>
// Note: new values must be added before MapFileType::Count.
enum class MapFileType : uint8_t
{
Map,
Diff,
Count
};
using MwmCounter = uint32_t;
using MwmSize = uint64_t;
using LocalAndRemoteSize = std::pair<MwmSize, MwmSize>;
std::string DebugPrint(MapFileType type);