18 lines
143 B
C++
18 lines
143 B
C++
|
#ifndef ENGINE_STATUS_HPP
|
||
|
#define ENGINE_STATUS_HPP
|
||
|
|
||
|
namespace osrm
|
||
|
{
|
||
|
namespace engine
|
||
|
{
|
||
|
|
||
|
enum class Status
|
||
|
{
|
||
|
Ok,
|
||
|
Error
|
||
|
};
|
||
|
}
|
||
|
}
|
||
|
|
||
|
#endif
|