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

osm_element_helpers.hpp « generator - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2b67f990cb5006510b4f3e81915483a0ffb8852b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#pragma once

#include "generator/osm_element.hpp"

namespace generator
{
namespace osm_element
{
bool IsPoi(OsmElement const & osmElement);

bool IsBuilding(OsmElement const & osmElement);

// Has house name or house number.
bool HasHouse(OsmElement const & osmElement);

bool HasStreet(OsmElement const & osmElement);
}  // namespace osm_element
}  // namespace generator