Introduced yes/no/unknown value enum.

This commit is contained in:
Alex Zolotarev 2016-02-10 23:04:23 +03:00 committed by Sergey Yershov
parent 5557766bf3
commit e821eadeee
2 changed files with 28 additions and 0 deletions

View file

@ -25,3 +25,4 @@ HEADERS += \
server_api.hpp \
ui2oh.hpp \
xml_feature.hpp \
yes_no_unknown.hpp \

27
editor/yes_no_unknown.hpp Normal file
View file

@ -0,0 +1,27 @@
#pragma once
#include "std/cstdint.hpp"
#include "std/string.hpp"
/// Used to store and edit 3-state OSM information, for example,
/// "This place has internet", "does not have", or "it's not specified yet".
/// Explicit values are given for easier reuse in Java code.
namespace osm
{
enum YesNoUnknown
{
Unknown = 0,
Yes = 1,
No = 2
};
inline string DebugPrint(YesNoUnknown value)
{
switch (value)
{
case Unknown: return "Unknown";
case Yes: return "Yes";
case No: return "No";
}
}
} // namespace osm