#ifndef TRIBOOL_HPP
#define TRIBOOL_HPP

namespace osrm
{
namespace util
{

enum class tribool : char
{
    yes,
    no,
    indeterminate
};
}
}
#endif // TRIBOOL_HPP