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

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

#include "../base/base.hpp"

#include "../std/string.hpp"
#include "../std/vector.hpp"

#include "../base/start_mem_debug.hpp"

struct XMLElement;

namespace ftype
{
  void ParseOSMTypes(char const * fPath, int scale);

  /// Get the types, name and layer fot feature with the tree of tags.
  bool GetNameAndType(XMLElement * p, vector<uint32_t> & types, string & name, int32_t & layer);
}

#include "../base/stop_mem_debug.hpp"