Welcome to mirror list, hosted at ThFree Co, Russian Federation.

openlr_model_xml.hpp « openlr - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 61229a4feb2e5f701db02d3b1420e7b7d4a81fd9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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