Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVladiMihaylenko <vxmihaylenko@gmail.com>2017-02-08 13:55:07 +0300
committerVladiMihaylenko <vxmihaylenko@gmail.com>2017-02-09 14:19:55 +0300
commitbeed2cda319ad6bc2860209c269ff36b3b704378 (patch)
treedc76ac37e51659bb632673b03a8cbe1ff23b5985 /indexer/ftypes_matcher.hpp
parent3ead8da93d07802d52b23bd593b72fd80ee07758 (diff)
Review fixes
Diffstat (limited to 'indexer/ftypes_matcher.hpp')
-rw-r--r--indexer/ftypes_matcher.hpp30
1 files changed, 0 insertions, 30 deletions
diff --git a/indexer/ftypes_matcher.hpp b/indexer/ftypes_matcher.hpp
index 0b06d40f4a..760d391120 100644
--- a/indexer/ftypes_matcher.hpp
+++ b/indexer/ftypes_matcher.hpp
@@ -249,34 +249,4 @@ enum class HighwayClass
string DebugPrint(HighwayClass const cls);
HighwayClass GetHighwayClass(feature::TypesHolder const & types);
-
-enum class RoadShieldType
-{
- Default = 0,
- Generic_Green,
- Generic_Blue,
- Generic_Red,
- Generic_Orange,
- US_Interstate,
- US_Highway,
- UK_Highway,
- Count
-};
-
-struct RoadShield
-{
- RoadShieldType m_type;
- std::string m_name;
- std::string m_additionalText;
-
- RoadShield() = default;
- RoadShield(RoadShieldType const & type, std::string const & name)
- : m_type(type), m_name(name)
- {}
- RoadShield(RoadShieldType const & type, std::string const & name, std::string const & additionalText)
- : m_type(type), m_name(name), m_additionalText(additionalText)
- {}
-};
-
-std::vector<RoadShield> GetRoadShields(FeatureType const & f);
} // namespace ftypes