Banuba SDK
full_image_format.hpp
Go to the documentation of this file.
1 /// \file
2 /// \addtogroup Types
3 /// @{
4 ///
5 // AUTOGENERATED FILE - DO NOT MODIFY!
6 // This file was generated by Djinni from types.djinni
7 
8 #pragma once
9 
11 #include <cstdint>
12 #include <utility>
13 
14 namespace bnb { namespace interfaces {
15 
16 struct full_image_format final {
17  int32_t width;
18  int32_t height;
19  rotation orientation;
20 
21  full_image_format(int32_t width_,
22  int32_t height_,
23  rotation orientation_)
24  : width(std::move(width_))
25  , height(std::move(height_))
26  , orientation(std::move(orientation_))
27  {}
28 };
29 
30 } } // namespace bnb::interfaces
31 /// @}
32 
bnb::interfaces::full_image_format
Definition: full_image_format.hpp:16
rotation.hpp