-
Notifications
You must be signed in to change notification settings - Fork 262
add try_get_activation_factory overloads that take the runtimeclass name #769
New issue
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
Conversation
|
/azp run |
|
No pipelines are associated with this pull request. |
kennykerr
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good - just a few comments. Generally, the std::string_view should be avoided for systems programming. We do support it, but we should avoid using it any more than necessary as it is not strictly safe and param::hstring gives us more freedom to distance ourselves from it in future.
kennykerr
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks!
|
/azp run |
|
No pipelines are associated with this pull request. |
We have a design pattern "extension classes" that uses runtimeclasses as extensions. The class names are discovered at runtime, so we need to be able to specify them to the activation functions. this adds that support.