NeatReflection
NeatReflection copied to clipboard
KISS C++20 Type Reflection using IFC files
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 } },...
- [x] Basic usage - [ ] Simple serialisation example - [ ] Custom code gen (possibly for flecs)