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