veselink1 / refl-cpp

Static reflection for C++17 (compile-time enumeration, attributes, proxies, overloads, template functions, metaprogramming).
https://veselink1.github.io/refl-cpp/md__introduction.html
MIT License
1.07k stars 77 forks source link

How can I integrate this lib with Eigen3 math lib? #86

Closed rocketman123456 closed 1 month ago

rocketman123456 commented 4 months ago

I’m new to this lib and I cannot find a way to reflect eigen matrix

veselink1 commented 4 months ago

refl-cpp requires you to write metadata definitions for unknown types, such as the types in Eigen.

Maybe start here: https://veselink1.github.io/refl-cpp/md__introduction.html#autotoc_md49

rocketman123456 commented 4 months ago

Thanks a lot! I will update if I make any progress