Banuba SDK
Loading...
Searching...
No Matches
color_range.hpp
Go to the documentation of this file.
1/// \file
2/// \addtogroup EffectPlayer
3/// @{
4///
5// AUTOGENERATED FILE - DO NOT MODIFY!
6// This file was generated by Djinni from effect_player.djinni
7
8#pragma once
9
10#include <functional>
11
12namespace bnb { namespace interfaces {
13
14enum class color_range : int {
15 video,
16 full,
17};
18
19} } // namespace bnb::interfaces
20
21namespace std {
22
23template <>
24struct hash<::bnb::interfaces::color_range> {
25 size_t operator()(::bnb::interfaces::color_range type) const {
26 return std::hash<int>()(static_cast<int>(type));
27 }
28};
29
30} // namespace std
31/// @}
32