mirror of
https://codeberg.org/comaps/comaps
synced 2025-12-20 05:13:58 +00:00
committed by
Konstantin Pastbin
parent
c9cbb64f12
commit
76ffc99abd
18
tools/openlr/openlr_model_xml.hpp
Normal file
18
tools/openlr/openlr_model_xml.hpp
Normal file
@@ -0,0 +1,18 @@
|
||||
#pragma once
|
||||
|
||||
#include <vector>
|
||||
|
||||
namespace pugi
|
||||
{
|
||||
class xml_document;
|
||||
class xml_node;
|
||||
} // namespace pugi
|
||||
|
||||
namespace openlr
|
||||
{
|
||||
struct LinearSegment;
|
||||
|
||||
bool SegmentFromXML(pugi::xml_node const & segmentNode, LinearSegment & segment);
|
||||
|
||||
bool ParseOpenlr(pugi::xml_document const & document, std::vector<LinearSegment> & segments);
|
||||
} // namespace openlr
|
||||
Reference in New Issue
Block a user