summaryrefslogtreecommitdiff
path: root/include/mbgl/map/still_image.hpp
blob: b9ce0620faa33f70ddd4f79600a1de90a1f9c2bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef MBGL_MAP_STILL_IMAGE
#define MBGL_MAP_STILL_IMAGE

#include <mbgl/util/noncopyable.hpp>

#include <string>
#include <cstdint>

namespace mbgl {

class StillImage : util::noncopyable {
public:
    uint16_t width = 0;
    uint16_t height = 0;
    using Pixel = uint32_t;
    std::unique_ptr<Pixel[]> pixels;
};

}

#endif