Reverting Switzerland, because I'll make a seperate PR for that

Signed-off-by: vikiawv <vikiawv@noreply.codeberg.org>
This commit is contained in:
vikiawv
2025-11-22 10:30:31 +01:00
committed by Konstantin Pastbin
parent 095040a060
commit 794d5c872e

View File

@@ -660,15 +660,10 @@ public:
{} {}
}; };
class SwitzerlandRoadShieldParser : public HighwayClassRoadShieldParser class SwitzerlandRoadShieldParser : public SimpleRoadShieldParser
{ {
public: explicit SwitzerlandRoadShieldParser(std::string const & baseRoadNumber)
explicit SwitzerlandRoadShieldParser(HighwayClass const & highwayClass) : SimpleRoadShieldParser(baseRoadNumber, {{"A", RoadShieldType::Highway_Hexagon_Red}})
: HighwayClassRoadShieldParser(baseRoadNumber, highwayClass,
{{HighwayClass::Motorway, RoadShieldType::Highway_Hexagon_Red},
{{HighwayClass::Primary, RoadShieldType::Generic_Blue},
{{HighwayClass::Secondary, RoadShieldType::Generic_White},
{{HighwayClass::Tertiary, RoadShieldType::Generic_White}})
{} {}
}; };