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

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

#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)> filterDrawableType = feature::IsDrawableAny);
}