Banuba SDK
Loading...
Searching...
No Matches
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 was generated by Djinni from types.djinni
7
8#pragma once
9
11#include <utility>
12#include <vector>
13
14namespace bnb { namespace interfaces {
15
16struct 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