Summary: This adds logic to the enum generator to generate C++ style scoped enums. This gives us a few nicities over C enums, even if both must exist: 1. We can add types and keep unsgined enums directly in bitfields 2. Style/readability 3. Avoiding implicit int conversion Differential Revision: D49267996 fbshipit-source-id: 0ba9a79e19616f55abdc15012fbfd26933c6d179
47 lines
973 B
C++
47 lines
973 B
C++
/*
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
// @generated by enums.py
|
|
// clang-format off
|
|
#pragma once
|
|
|
|
#include <cstdint>
|
|
#include <yoga/YGEnums.h>
|
|
#include <yoga/enums/YogaEnums.h>
|
|
|
|
namespace facebook::yoga {
|
|
|
|
enum class Direction : uint8_t {
|
|
Inherit = YGDirectionInherit,
|
|
LTR = YGDirectionLTR,
|
|
RTL = YGDirectionRTL,
|
|
};
|
|
|
|
template <>
|
|
constexpr inline int32_t ordinalCount<Direction>() {
|
|
return 3;
|
|
}
|
|
|
|
template <>
|
|
constexpr inline int32_t bitCount<Direction>() {
|
|
return 2;
|
|
}
|
|
|
|
constexpr inline Direction scopedEnum(YGDirection unscoped) {
|
|
return static_cast<Direction>(unscoped);
|
|
}
|
|
|
|
constexpr inline YGDirection unscopedEnum(Direction scoped) {
|
|
return static_cast<YGDirection>(scoped);
|
|
}
|
|
|
|
inline const char* toString(Direction e) {
|
|
return YGDirectionToString(unscopedEnum(e));
|
|
}
|
|
|
|
} // namespace facebook::yoga
|