| 682 | } |
| 683 | |
| 684 | bool Storage::IsInnerNode(CountryId const & countryId) const |
| 685 | { |
| 686 | if (!IsCountryIdValid(countryId)) |
| 687 | return false; |
| 688 | CountryTree::Node const * const node = m_countries.FindFirst(countryId); |
| 689 | return node != nullptr && node->ChildrenCount() != 0; |
| 690 | } |
| 691 | |
| 692 | LocalAndRemoteSize Storage::CountrySizeInBytes(CountryId const & countryId) const |
| 693 | { |
no test coverage detected