osrm-backend/include/engine/status.hpp

18 lines
143 B
C++
Raw Normal View History

2016-01-28 10:28:44 -05:00
#ifndef ENGINE_STATUS_HPP
#define ENGINE_STATUS_HPP
namespace osrm
{
namespace engine
{
enum class Status
{
Ok,
Error
};
}
}
#endif