16 lines
176 B
C++
16 lines
176 B
C++
|
#ifndef DATASETS_HPP
|
||
|
#define DATASETS_HPP
|
||
|
|
||
|
namespace osrm::storage
|
||
|
{
|
||
|
|
||
|
enum class FeatureDataset
|
||
|
{
|
||
|
ROUTE_STEPS,
|
||
|
ROUTE_GEOMETRY,
|
||
|
};
|
||
|
|
||
|
} // namespace osrm::storage
|
||
|
|
||
|
#endif
|