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/indexer/yes_no_unknown.hpp
David Martinez 7e4b3e5be1 [ios][editor] Add drive_through to editor
[ios][editor] Add MWMEditorSegmentedTableViewCell
[core] Add YesNoUnknown enum

Signed-off-by: David Martinez <47610359+dvdmrtnz@users.noreply.github.com>
2024-04-18 23:39:48 -03:00

8 lines
93 B
C++

#pragma once
typedef enum YesNoUnknown
{
Unknown = 0,
Yes = 1,
No = 2
} YesNoUnknown;