Banuba SDK
action_units_data.hpp
Go to the documentation of this file.
1 /// \file
2 /// \addtogroup Types
3 /// @{
4 ///
5 // AUTOGENERATED FILE - DO NOT MODIFY!
6 // This file generated by Djinni from types.djinni
7 
8 #pragma once
9 
11 #include <utility>
12 #include <vector>
13 
14 namespace bnb { namespace interfaces {
15 
16 struct action_units_data final {
17  std::vector<action_units> faces;
18 
19  action_units_data(std::vector<action_units> faces_)
20  : faces(std::move(faces_))
21  {}
22 };
23 
24 } } // namespace bnb::interfaces
25 /// @}
26 
action_units.hpp
bnb::interfaces::action_units_data
Definition: action_units_data.hpp:16