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:
authorvng <viktor.govako@gmail.com>2012-09-25 20:17:24 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 01:43:52 +0300
commitdfb2db05de730607a7496e2f9d89424b49d5ae30 (patch)
treee72c00966bec2bf5eae942bb3860df414675ec67 /indexer/classificator.cpp
parent49a7bfc73de52fa58ea972f7281ff8c970f623c8 (diff)
Get raw types in Framework::GetAddressInfo if no types matched in categories.
Diffstat (limited to 'indexer/classificator.cpp')
-rw-r--r--indexer/classificator.cpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/indexer/classificator.cpp b/indexer/classificator.cpp
index 1666b22299..4cb9711ecb 100644
--- a/indexer/classificator.cpp
+++ b/indexer/classificator.cpp
@@ -552,3 +552,16 @@ void Classificator::Clear()
{
*this = Classificator();
}
+
+string Classificator::GetReadableObjectName(uint32_t type) const
+{
+ string s = classif().GetFullObjectName(type);
+
+ // remove ending dummy symbol
+ ASSERT ( !s.empty(), () );
+ s.resize(s.size()-1);
+
+ // replace separator
+ replace(s.begin(), s.end(), '|', '-');
+ return s;
+}