NeatReflection icon indicating copy to clipboard operation
NeatReflection copied to clipboard

KISS C++20 Type Reflection using IFC files

Results 4 NeatReflection issues
Sort by recently updated
recently updated
newest added

Take the following example: ```cpp template IsVector { static constexpr bool value = false; }; template IsVector { static constexpr bool value = true; }; ```

Take the example: ```cpp template class C {}; ``` Will currently just generate: ```cpp add_type(Type::create("C", get_id(), { }, { }, { }, { }, { TemplateArgument{ Neat::Any{ 3 } },...

enhancement

- [x] Basic usage - [ ] Simple serialisation example - [ ] Custom code gen (possibly for flecs)

documentation