From 75dbfa146463719fc9e0ddf50b5ee7e1fb52d5ec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=BE=D0=B1=D1=80=D1=8B=D0=B8=CC=86=20=D0=AD=D1=8D?= =?UTF-8?q?=D1=85?= Date: Wed, 1 Mar 2017 18:04:26 +0300 Subject: [PATCH] small refactoring mwm traits --- platform/mwm_traits.cpp | 8 ++++---- platform/mwm_traits.hpp | 3 +++ 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/platform/mwm_traits.cpp b/platform/mwm_traits.cpp index f066ffa03a..f832ead28d 100644 --- a/platform/mwm_traits.cpp +++ b/platform/mwm_traits.cpp @@ -8,24 +8,24 @@ MwmTraits::MwmTraits(MwmVersion const & version) : m_version(version) {} MwmTraits::SearchIndexFormat MwmTraits::GetSearchIndexFormat() const { - if (m_version.GetFormat() < version::Format::v7) + if (GetFormat() < version::Format::v7) return SearchIndexFormat::FeaturesWithRankAndCenter; return SearchIndexFormat::CompressedBitVector; } MwmTraits::HouseToStreetTableFormat MwmTraits::GetHouseToStreetTableFormat() const { - if (m_version.GetFormat() < version::Format::v7) + if (GetFormat() < version::Format::v7) return HouseToStreetTableFormat::Unknown; return HouseToStreetTableFormat::Fixed3BitsDDVector; } -bool MwmTraits::HasOffsetsTable() const { return m_version.GetFormat() >= version::Format::v6; } +bool MwmTraits::HasOffsetsTable() const { return GetFormat() >= version::Format::v6; } bool MwmTraits::HasRoutingIndex() const { uint32_t constexpr kFirstVersionWithRoutingIndex = 161206; - return m_version.GetVersion() >= kFirstVersionWithRoutingIndex; + return GetVersion() >= kFirstVersionWithRoutingIndex; } string DebugPrint(MwmTraits::SearchIndexFormat format) diff --git a/platform/mwm_traits.hpp b/platform/mwm_traits.hpp index 3b74ebdb78..2663acd462 100644 --- a/platform/mwm_traits.hpp +++ b/platform/mwm_traits.hpp @@ -51,6 +51,9 @@ public: bool HasRoutingIndex() const; private: + Format GetFormat() const { return m_version.GetFormat(); } + uint32_t GetVersion() const { return m_version.GetVersion(); } + MwmVersion m_version; };