Update road_shields_parser.cpp

Signed-off-by: Ahmet <63475369+ahmetlii@users.noreply.github.com>
This commit is contained in:
Ahmet 2024-01-13 14:41:49 +03:00 committed by GitHub
parent 7d1b298dd7
commit 6aaa1bb19c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -569,6 +569,7 @@ public:
};
class TurkeyRoadShieldParser : public SimpleRoadShieldParser
//TODO: Implement provincial road shields, formatted as (province number, between 01-81)-(two digit number)
{
public:
explicit TurkeyRoadShieldParser(std::string const & baseRoadNumber)
@ -579,9 +580,6 @@ public:
{"D", RoadShieldType::Generic_Blue}, // White font.
{"D ", RoadShieldType::Generic_Blue}}) // White font.
{
}
: NumericRoadShieldParser(baseRoadNumber, {{01, 81, RoadShieldType::Generic_White} }}) //Blue font.
{
}
};