summaryrefslogtreecommitdiff
path: root/include/mbgl/layermanager/fill_extrusion_layer_factory.hpp
blob: c524f61950171f540636a502432602a3d9b9b5b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#pragma once

#include <mbgl/layermanager/layer_factory.hpp>

namespace mbgl {

class FillExtrusionLayerFactory : public LayerFactory {
protected:
    const style::LayerTypeInfo* getTypeInfo() const noexcept final;
    std::unique_ptr<style::Layer> createLayer(const std::string& id, const style::conversion::Convertible& value) noexcept final;
    std::unique_ptr<RenderLayer> createRenderLayer(Immutable<style::Layer::Impl>) noexcept final;
};

} // namespace mbgl