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,16 +660,11 @@ public:
{}
};
class SwitzerlandRoadShieldParser : public HighwayClassRoadShieldParser
class SwitzerlandRoadShieldParser : public SimpleRoadShieldParser
{
public:
explicit SwitzerlandRoadShieldParser(HighwayClass const & highwayClass)
: HighwayClassRoadShieldParser(baseRoadNumber, highwayClass,
{{HighwayClass::Motorway, RoadShieldType::Highway_Hexagon_Red},
{{HighwayClass::Primary, RoadShieldType::Generic_Blue},
{{HighwayClass::Secondary, RoadShieldType::Generic_White},
{{HighwayClass::Tertiary, RoadShieldType::Generic_White}})
{}
explicit SwitzerlandRoadShieldParser(std::string const & baseRoadNumber)
: SimpleRoadShieldParser(baseRoadNumber, {{"A", RoadShieldType::Highway_Hexagon_Red}})
{}
};
class LiechtensteinRoadShieldParser : public SimpleRoadShieldParser