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

#include <mbgl/style/source.hpp>

namespace mbgl {
namespace style {

class RasterSource : public Source {
public:
    RasterSource(std::string id,
                 std::string url,
                 uint16_t tileSize,
                 std::unique_ptr<Tileset>&&,
                 std::unique_ptr<mapbox::geojsonvt::GeoJSONVT>&&);
};

} // namespace style
} // namespace mbgl