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