rttrorg / rttr

C++ Reflection Library
https://www.rttr.org
MIT License
3.11k stars 429 forks source link

Registering hierarchy for template classes #337

Open MohammadMDSA opened 2 years ago

MohammadMDSA commented 2 years ago

Hi! I have template class like

template<class T> class Ref { ''' }

is it possible to include argument type in type registration? like: RTTR_REGISTRATION { rttr::registration::class_<Ref<T>>("Foo") ... }