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: 660cd3fdd1e98dc127b9ce19074eb91bfff7a0af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#pragma once

#include "std/vector.hpp"

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, vector<LinearSegment> & segments);
}  // namespace openlr