- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
std::list< Candidate* >::iterator it = order_by_priority.begin();
while( ( speed < (*it)->minspeed ) || ( speed > (*it)->maxspeed ) ){
++it;
if( it == order_by_priority.end() )
break;
}
if( it == order_by_priority.end() )
return NULL;
return *it;
Комментарии (3) RSS
Добавить комментарий