diff options
author | John Firebaugh <john.firebaugh@gmail.com> | 2015-12-07 14:56:32 -0800 |
---|---|---|
committer | John Firebaugh <john.firebaugh@gmail.com> | 2015-12-07 18:22:33 -0800 |
commit | e04c5f650648d150e78da3602745b6190ec4aee3 (patch) | |
tree | 5420b75780c798af82aa5831a1413c8bf1df0c96 /include | |
parent | 8bfc5de1dc969559e031de6650d234e086cb4fb2 (diff) | |
download | qtlocation-mapboxgl-e04c5f650648d150e78da3602745b6190ec4aee3.tar.gz |
[core] Replace StyleLayerType with RTTI
Diffstat (limited to 'include')
-rw-r--r-- | include/mbgl/style/types.hpp | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/include/mbgl/style/types.hpp b/include/mbgl/style/types.hpp index be66aca485..95944ce18f 100644 --- a/include/mbgl/style/types.hpp +++ b/include/mbgl/style/types.hpp @@ -26,29 +26,6 @@ struct Faded { // ------------------------------------------------------------------------------------------------- -enum class StyleLayerType : uint8_t { - Unknown, - Fill, - Line, - Circle, - Symbol, - Raster, - Background -}; - -MBGL_DEFINE_ENUM_CLASS(StyleLayerTypeClass, StyleLayerType, { - { StyleLayerType::Unknown, "unknown" }, - { StyleLayerType::Fill, "fill" }, - { StyleLayerType::Line, "line" }, - { StyleLayerType::Circle, "circle" }, - { StyleLayerType::Symbol, "symbol" }, - { StyleLayerType::Raster, "raster" }, - { StyleLayerType::Background, "background" }, - { StyleLayerType(-1), "unknown" }, -}); - -// ------------------------------------------------------------------------------------------------- - enum class SourceType : uint8_t { Vector, Raster, |