summaryrefslogtreecommitdiff
path: root/include/mbgl/style/layer_properties.hpp
blob: 89d599dfbc6735f1da424fbef4985064183b393c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#pragma once
#include <mbgl/style/layer_impl.hpp>

namespace mbgl {

namespace style {

/**
 * @brief An interface, wrapping evaluated layer properties.
 * 
 *  It is an abstract base class; concrete derived classes that hold the actual data are provided for each layer type. 
 */
class LayerProperties {
public:
    virtual ~LayerProperties() = default;

    Immutable<Layer::Impl> baseImpl;

protected:
    LayerProperties(Immutable<Layer::Impl> impl) : baseImpl(std::move(impl)) {}
};

template <class Derived>
inline const auto& getEvaluated(const Immutable<LayerProperties>& properties) {
    return static_cast<const Derived&>(*properties).evaluated;
}

} // namespace style
} // namespace mbgl