コード例 #1
0
ファイル: place_page_info.cpp プロジェクト: syershov/omim
bool Info::ShouldShowAddPlace() const
{
  auto const isPointOrBuilding = IsPointType() || IsBuilding();
  return m_canEditOrAdd && !(IsFeature() && isPointOrBuilding);
}
コード例 #2
0
ファイル: place_page_info.cpp プロジェクト: DINKIN/omim
bool Info::ShouldShowAddPlace() const { return !IsSponsoredHotel() && (!IsFeature() || (!IsPointType() && !IsBuilding())); }