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

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

#include "indexer/feature_data.hpp"
#include "indexer/feature_visibility.hpp"

#include <cstdint>
#include <functional>

struct OsmElement;

namespace ftype
{
/// Get the types, name and layer for feature with the tree of tags.
void GetNameAndType(OsmElement * p, FeatureParams & params,
                    std::function<bool(uint32_t)> filterType = feature::TypeIsUseful);
}