reflect: initial implementation

This commit is contained in:
Roland Conybeare 2023-09-25 17:49:42 -04:00
commit fdb4ca37f4
39 changed files with 3662 additions and 0 deletions

View file

@ -0,0 +1,20 @@
/* file VectorTdx.cpp
*
* author: Roland Conybeare, Aug 2022
*/
#include "vector/VectorTdx.hpp"
namespace xo {
namespace reflect {
std::string const &
VectorTdx::struct_member_name(uint32_t i) const {
return TypeDescrExtra::struct_member_name(i);
} /*struct_member_name*/
} /*namespace reflect*/
} /*namespace xo*/
/* end VectorTdx.cpp */