2024-05-31 22:59:00 -04:00
|
|
|
#ifndef RFL_INTERNAL_EXTRACTDISTRIMINATORS_HPP_
|
|
|
|
#define RFL_INTERNAL_EXTRACTDISTRIMINATORS_HPP_
|
|
|
|
|
|
|
|
#include <type_traits>
|
|
|
|
|
|
|
|
#include "../TaggedUnion.hpp"
|
|
|
|
#include "../define_literal.hpp"
|
|
|
|
#include "../field_type.hpp"
|
|
|
|
|
|
|
|
namespace rfl {
|
2024-06-08 14:10:59 -04:00
|
|
|
namespace internal {
|
2024-05-31 22:59:00 -04:00
|
|
|
|
2024-06-08 14:10:59 -04:00
|
|
|
template <class TaggedUnionType>
|
|
|
|
struct extract_discriminators;
|
2024-05-31 22:59:00 -04:00
|
|
|
|
2024-06-08 14:10:59 -04:00
|
|
|
template <StringLiteral _discriminator, class... NamedTupleType>
|
2024-06-16 00:13:15 -04:00
|
|
|
struct extract_discriminators<TaggedUnion<_discriminator, NamedTupleType...>> {
|
|
|
|
using type =
|
|
|
|
define_literal_t<std::remove_cvref_t<field_type_t<_discriminator, NamedTupleType>>...>;
|
2024-06-08 14:10:59 -04:00
|
|
|
};
|
2024-05-31 22:59:00 -04:00
|
|
|
|
2024-06-08 14:10:59 -04:00
|
|
|
} // namespace internal
|
|
|
|
} // namespace rfl
|
2024-05-31 22:59:00 -04:00
|
|
|
|
|
|
|
#endif
|