Banuba SDK
camera_orientation.hpp
Go to the documentation of this file.
1 /// \file
2 /// \addtogroup EffectPlayer
3 /// @{
4 ///
5 // AUTOGENERATED FILE - DO NOT MODIFY!
6 // This file 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 camera_orientation : int {
15  deg_0,
16  deg_90,
17  deg_180,
18  deg_270,
19 };
20 
21 } } // namespace bnb::interfaces
22 
23 namespace std {
24 
25 template <>
26 struct hash<::bnb::interfaces::camera_orientation> {
27  size_t operator()(::bnb::interfaces::camera_orientation type) const {
28  return std::hash<int>()(static_cast<int>(type));
29  }
30 };
31 
32 } // namespace std
33 /// @}
34