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
If I have a template class: template <class T> class Foo
template <class T> class Foo
I want to find if some rttr::type is any type that uses this template (for any T). Is there any way I can do this?
The only way I've found is to do: strstr(type.get_name().data(), "Foo") != 0
strstr(type.get_name().data(), "Foo") != 0
I wanted to know if there is a cleaner/better way to do it.
The text was updated successfully, but these errors were encountered:
this project seems dead. so sad.
Sorry, something went wrong.
No branches or pull requests
If I have a template class:
template <class T> class Foo
I want to find if some rttr::type is any type that uses this template (for any T). Is there any way I can do this?
The only way I've found is to do:
strstr(type.get_name().data(), "Foo") != 0
I wanted to know if there is a cleaner/better way to do it.
The text was updated successfully, but these errors were encountered: