osrm-backend/include/util/tribool.hpp

18 lines
168 B
C++
Raw Normal View History

#ifndef TRIBOOL_HPP
#define TRIBOOL_HPP
namespace osrm
{
2016-01-05 10:51:13 -05:00
namespace util
{
enum class tribool : char
{
yes,
no,
indeterminate
};
2016-01-05 10:51:13 -05:00
}
}
#endif // TRIBOOL_HPP