| 1025 | } |
| 1026 | |
| 1027 | std::vector<std::string> GetRoadShieldsNames(FeatureType & ft) |
| 1028 | { |
| 1029 | std::vector<std::string> names; |
| 1030 | auto const & ref = ft.GetRef(); |
| 1031 | if (!ref.empty() && IsStreetOrSquareChecker::Instance()(ft)) |
| 1032 | for (auto && shield : GetRoadShields(ref)) |
| 1033 | names.push_back(std::move(shield.m_name)); |
| 1034 | return names; |
| 1035 | } |
| 1036 | |
| 1037 | std::string DebugPrint(RoadShieldType shieldType) |
| 1038 | { |
no test coverage detected