aboutsummaryrefslogtreecommitdiff
path: root/tests/golden_output/aidl-test-interface-ndk_platform-source/gen/include/aidl/android/aidl/tests/ByteEnum.h
blob: 30ac9e5c2008a175c1de279f24881a1d2607b652 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#pragma once

#include <cstdint>
#include <memory>
#include <optional>
#include <string>
#include <vector>
#ifdef BINDER_STABILITY_SUPPORT
#include <android/binder_stability.h>
#endif  // BINDER_STABILITY_SUPPORT
#include <array>
#include <android/binder_enums.h>
namespace aidl {
namespace android {
namespace aidl {
namespace tests {
enum class ByteEnum : int8_t {
  FOO = 1,
  BAR = 2,
  BAZ = 3,
};

[[nodiscard]] static inline std::string toString(ByteEnum val) {
  switch(val) {
  case ByteEnum::FOO:
    return "FOO";
  case ByteEnum::BAR:
    return "BAR";
  case ByteEnum::BAZ:
    return "BAZ";
  default:
    return std::to_string(static_cast<int8_t>(val));
  }
}
}  // namespace tests
}  // namespace aidl
}  // namespace android
}  // namespace aidl
namespace ndk {
namespace internal {
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wc++17-extensions"
template <>
constexpr inline std::array<aidl::android::aidl::tests::ByteEnum, 3> enum_values<aidl::android::aidl::tests::ByteEnum> = {
  aidl::android::aidl::tests::ByteEnum::FOO,
  aidl::android::aidl::tests::ByteEnum::BAR,
  aidl::android::aidl::tests::ByteEnum::BAZ,
};
#pragma clang diagnostic pop
}  // namespace internal
}  // namespace android