aboutsummaryrefslogtreecommitdiff
path: root/tests/golden_output/aidl_test_loggable_interface-ndk_platform-source/gen/include/aidl/android/aidl/loggable/Enum.h
blob: 0959460765e95359fad06fa6f5ae9f7cee21ec1b (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
#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 loggable {
enum class Enum : int8_t {
  FOO = 42,
};

static inline std::string toString(Enum val) {
  switch(val) {
  case Enum::FOO:
    return "FOO";
  default:
    return std::to_string(static_cast<int8_t>(val));
  }
}
}  // namespace loggable
}  // 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::loggable::Enum, 1> enum_values<aidl::android::aidl::loggable::Enum> = {
  aidl::android::aidl::loggable::Enum::FOO,
};
#pragma clang diagnostic pop
}  // namespace internal
}  // namespace android