blob: 47437ca5f39b5ccc610690e79eb71084627a8067 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#pragma once
#include <span> // IWYU pragma: export
#include <special_members.hpp>
#include <string>
class Image {
public:
Image(const char * fileName, int flags);
Image(const std::string & fileName, int flags) : Image(fileName.c_str(), flags) { }
~Image();
NO_COPY(Image);
NO_MOVE(Image);
unsigned int width, height, numComponents;
std::span<unsigned char> data;
};
|