Banuba SDK
processor_type.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 
12 namespace bnb { namespace interfaces {
13 
14 enum class processor_type : int {
15  /** Live feed processor */
16  realtime,
17  /** Photo processor */
18  photo,
19  /** Video stream processor */
20  video,
21 };
22 
23 } } // namespace bnb::interfaces
24 
25 namespace std {
26 
27 template <>
28 struct hash<::bnb::interfaces::processor_type> {
29  size_t operator()(::bnb::interfaces::processor_type type) const {
30  return std::hash<int>()(static_cast<int>(type));
31  }
32 };
33 
34 } // namespace std
35 /// @}
36