33 lines
699 B
C++
33 lines
699 B
C++
|
#ifndef OSRM_EXTRACTION_SEGMENT_HPP
|
||
|
#define OSRM_EXTRACTION_SEGMENT_HPP
|
||
|
|
||
|
#include <util/coordinate.hpp>
|
||
|
|
||
|
namespace osrm
|
||
|
{
|
||
|
namespace extractor
|
||
|
{
|
||
|
|
||
|
struct ExtractionSegment
|
||
|
{
|
||
|
ExtractionSegment(const osrm::util::Coordinate source_,
|
||
|
const osrm::util::Coordinate target_,
|
||
|
double distance_,
|
||
|
double weight_,
|
||
|
double duration_)
|
||
|
: source(source_), target(target_), distance(distance_), weight(weight_),
|
||
|
duration(duration_)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
const osrm::util::Coordinate source;
|
||
|
const osrm::util::Coordinate target;
|
||
|
const double distance;
|
||
|
double weight;
|
||
|
double duration;
|
||
|
};
|
||
|
}
|
||
|
}
|
||
|
|
||
|
#endif
|