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:
authorrachytski <siarhei.rachytski@gmail.com>2012-06-02 21:29:57 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 01:39:20 +0300
commit9201356184df3585de78c4abb998e4c7248b9ca2 (patch)
treefe258e7660965ba52ab5153df94be06ea54280b6 /storage
parent21b63475a7383bb2a0e4f0f0d57c3b5fb995fc27 (diff)
added CountryStatusDisplay GUI element and using it into InformationDisplay.
Diffstat (limited to 'storage')
-rw-r--r--storage/storage.hpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/storage/storage.hpp b/storage/storage.hpp
index afae87ce11..83f405018c 100644
--- a/storage/storage.hpp
+++ b/storage/storage.hpp
@@ -43,6 +43,12 @@ namespace storage
m_country == other.m_country &&
m_region == other.m_region);
}
+
+ bool operator!=(TIndex const & other) const
+ {
+ return !(*this == other);
+ }
+
bool operator<(TIndex const & other) const
{
if (m_group != other.m_group)