| 531 | // Implementations of "ref" parses for some countries. |
| 532 | |
| 533 | class AustriaRoadShieldParser : public SimpleRoadShieldParser |
| 534 | { |
| 535 | public: |
| 536 | explicit AustriaRoadShieldParser(std::string const & baseRoadNumber) |
| 537 | : SimpleRoadShieldParser(baseRoadNumber, {{"A", RoadShieldType::Generic_Blue_Bordered}, |
| 538 | {"S", RoadShieldType::Generic_Blue_Bordered}, |
| 539 | {"B", RoadShieldType::Generic_Blue, false, true}, |
| 540 | {"P", RoadShieldType::Generic_Pill_Red_Bordered}, |
| 541 | {"L", RoadShieldType::Generic_Pill_White_Bordered, false, true}}) |
| 542 | {} |
| 543 | }; |
| 544 | |
| 545 | class BelgiumRoadShieldParser : public SimpleRoadShieldParser |
| 546 | { |