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

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'generator/osm_id.hpp')
-rw-r--r--generator/osm_id.hpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/generator/osm_id.hpp b/generator/osm_id.hpp
index e3401f0e6f..922435fada 100644
--- a/generator/osm_id.hpp
+++ b/generator/osm_id.hpp
@@ -15,10 +15,14 @@ class Id
public:
explicit Id(uint64_t encodedId = INVALID);
+
static Id Node(uint64_t osmId);
static Id Way(uint64_t osmId);
static Id Relation(uint64_t osmId);
+
uint64_t OsmId() const;
+ bool IsWay() const;
+
/// For debug output
string Type() const;