osrm-backend/include/extractor/speed_profile.hpp

17 lines
341 B
C++
Raw Normal View History

#ifndef SPEED_PROFILE_PROPERTIES_HPP
#define SPEED_PROFILE_PROPERTIES_HPP
struct SpeedProfileProperties
{
2016-01-05 06:04:04 -05:00
SpeedProfileProperties()
: traffic_signal_penalty(0), u_turn_penalty(0), has_turn_penalty_function(false)
{
}
2016-01-05 06:04:04 -05:00
int traffic_signal_penalty;
int u_turn_penalty;
bool has_turn_penalty_function;
};
#endif