osrm-backend/include/engine/status.hpp
2016-04-05 22:58:32 +02:00

19 lines
144 B
C++

#ifndef ENGINE_STATUS_HPP
#define ENGINE_STATUS_HPP
namespace osrm
{
namespace engine
{
enum class Status
{
Ok,
Error
};
}
}
#endif