14 lines
148 B
C++
14 lines
148 B
C++
|
#ifndef TRIBOOL_HPP
|
||
|
#define TRIBOOL_HPP
|
||
|
|
||
|
namespace osrm
|
||
|
{
|
||
|
enum class tribool : char
|
||
|
{
|
||
|
yes,
|
||
|
no,
|
||
|
indeterminate
|
||
|
};
|
||
|
}
|
||
|
#endif // TRIBOOL_HPP
|