Horizon
picture_data.hpp
1 #pragma once
2 #include <stdint.h>
3 #include <vector>
4 #include "util/uuid.hpp"
5 
6 namespace horizon {
7 class PictureData {
8 public:
9  PictureData(const UUID &uu, unsigned int w, unsigned int h, std::vector<uint32_t> &&d);
10  const UUID uuid;
11  const unsigned int width;
12  const unsigned int height;
13  const std::vector<uint32_t> data;
14 };
15 } // namespace horizon
horizon::PictureData
Definition: picture_data.hpp:7
horizon::UUID
This class encapsulates a UUID and allows it to be uses as a value type.
Definition: uuid.hpp:16