co-maps/libs/platform/country_defines.hpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
349 B
C++
Raw Permalink Normal View History

2025-11-22 13:58:55 +01:00
#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);