diff options
author | Mikhail Pozdnyakov <mikhail.pozdnyakov@mapbox.com> | 2019-09-26 14:43:11 +0300 |
---|---|---|
committer | Mikhail Pozdnyakov <mikhail.pozdnyakov@mapbox.com> | 2019-09-26 15:54:03 +0300 |
commit | 1733e29f0ac7ffe7c1aa5bf54d8f710befcdd2ea (patch) | |
tree | 9dfd6eff7e765baf751de52b1a65b618e8774f72 /include/mbgl | |
parent | e78c31c4b53326f260a4274018b5cb98fac0dbb6 (diff) | |
download | qtlocation-mapboxgl-1733e29f0ac7ffe7c1aa5bf54d8f710befcdd2ea.tar.gz |
[core] Separate header for StyleProperty
Diffstat (limited to 'include/mbgl')
-rw-r--r-- | include/mbgl/style/layer.hpp | 10 | ||||
-rw-r--r-- | include/mbgl/style/style_property.hpp | 20 |
2 files changed, 21 insertions, 9 deletions
diff --git a/include/mbgl/style/layer.hpp b/include/mbgl/style/layer.hpp index 11fd429be9..849cb436be 100644 --- a/include/mbgl/style/layer.hpp +++ b/include/mbgl/style/layer.hpp @@ -1,8 +1,8 @@ #pragma once #include <mbgl/style/conversion.hpp> +#include <mbgl/style/style_property.hpp> #include <mbgl/style/types.hpp> -#include <mbgl/util/feature.hpp> #include <mbgl/util/immutable.hpp> #include <mbgl/util/optional.hpp> @@ -66,14 +66,6 @@ struct LayerTypeInfo { const enum class TileKind : uint8_t { Geometry, Raster, RasterDEM, NotRequired } tileKind; }; -struct StyleProperty { - enum class Kind : uint8_t { Undefined, Constant, Expression, Transition }; - StyleProperty(Value value_, Kind kind_) : value(std::move(value_)), kind(kind_) {} - StyleProperty() = default; - const Value value; - const Kind kind = Kind::Undefined; -}; - /** * The runtime representation of a [layer](https://www.mapbox.com/mapbox-gl-style-spec/#layers) from the Mapbox Style * Specification. diff --git a/include/mbgl/style/style_property.hpp b/include/mbgl/style/style_property.hpp new file mode 100644 index 0000000000..43787c7919 --- /dev/null +++ b/include/mbgl/style/style_property.hpp @@ -0,0 +1,20 @@ +#pragma once + +#include <mbgl/util/feature.hpp> + +namespace mbgl { +namespace style { + +/** + * @brief Generic representation of a style property. + */ +struct StyleProperty { + enum class Kind : uint8_t { Undefined, Constant, Expression, Transition }; + StyleProperty(Value value_, Kind kind_) : value(std::move(value_)), kind(kind_) {} + StyleProperty() = default; + const Value value; + const Kind kind = Kind::Undefined; +}; + +} // namespace style +} // namespace mbgl |