summaryrefslogtreecommitdiff
path: root/src/mbgl/style/sources/raster_source_impl.hpp
blob: 4bc76560f8de3237a3a9e9eb4611768f1c12773d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#pragma once

#include <mbgl/style/sources/raster_source.hpp>
#include <mbgl/style/tile_source_impl.hpp>

namespace mbgl {
namespace style {

class RasterSource::Impl : public TileSourceImpl {
public:
    Impl(std::string id, Source&, variant<std::string, Tileset>, uint16_t tileSize);

    std::unique_ptr<RenderSource> createRenderSource() const final;
};

} // namespace style
} // namespace mbgl