Banuba SDK
Loading...
Searching...
No Matches
face_data_source.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 <functional>
11
12namespace bnb { namespace interfaces {
13
14enum class face_data_source : int {
15 rnd,
16};
17
18} } // namespace bnb::interfaces
19
20namespace std {
21
22template <>
23struct hash<::bnb::interfaces::face_data_source> {
24 size_t operator()(::bnb::interfaces::face_data_source type) const {
25 return std::hash<int>()(static_cast<int>(type));
26 }
27};
28
29} // namespace std
30/// @}
31