Banuba SDK
size.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 
10 #include <cstdint>
11 #include <utility>
12 
13 namespace bnb { namespace interfaces {
14 
15 struct size final {
16  int32_t width;
17  int32_t height;
18 
19  size(int32_t width_,
20  int32_t height_)
21  : width(std::move(width_))
22  , height(std::move(height_))
23  {}
24 };
25 
26 } } // namespace bnb::interfaces
27 /// @}
28 
bnb::interfaces::size
Definition: size.hpp:15