Repo created
This commit is contained in:
parent
4af19165ec
commit
68073add76
12458 changed files with 12350765 additions and 2 deletions
20
libs/platform/country_defines.hpp
Normal file
20
libs/platform/country_defines.hpp
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
#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);
|
||||
Loading…
Add table
Add a link
Reference in a new issue