We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I suggest adding support for custom class/struct member names to the library. Like this example:
#include <boost/describe.hpp> #include <iostream> struct my_struct { int a; float b; char c; }; BOOST_DESCRIBE_STRUCT( my_struct, (), ( (a, "a_name"), (b, "b_name"), (c) ) ) int main() { boost::mp11::mp_for_each< boost::describe::describe_members<my_struct, boost::describe::mod_any_access> >([&](auto D){ std::cout << D.name << std::endl; }); // Output: // a_name // b_name // c return 0; }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I suggest adding support for custom class/struct member names to the library.
Like this example:
The text was updated successfully, but these errors were encountered: