Banuba SDK
Loading...
Searching...
No Matches
eyes_mask.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
13#include <utility>
14
15namespace bnb { namespace interfaces {
16
17struct eyes_mask final {
18 eyes_iris_mask iris;
19 eyes_corneosclera_mask corneosclera;
20 eyes_pupil_mask pupil;
21
23 eyes_corneosclera_mask corneosclera_,
24 eyes_pupil_mask pupil_)
25 : iris(std::move(iris_))
26 , corneosclera(std::move(corneosclera_))
27 , pupil(std::move(pupil_))
28 {}
29};
30
31} } // namespace bnb::interfaces
32/// @}
33