| 89 | |
| 90 | template <typename Class, typename Type> |
| 91 | constexpr CoercedDataMemberProperty<Class, Type> CoercedDataMember(std::string_view name, |
| 92 | Type Class::*ptr, |
| 93 | Type (Class::*get)() |
| 94 | const) { |
| 95 | return {name, ptr, get}; |
| 96 | } |
| 97 | |
| 98 | template <typename... Properties> |
| 99 | struct PropertyTuple { |