You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
There is a lot of boilerplate code needed for converting libraries, relying on inheritance, into BT nodes. Consider this example:
As you see, this would reduce boilerplate code in the C++ and in the XML representation. Is there any way to reduce the strictness of the custom std::any used in this project to enable this feature ? I think that this project https://github.com/samee/any_of implements this behavior.
There is also the problem that BT evaluates ports type for consistency. I don't think one can deduce the base class of a derived class typeid...
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
There is a lot of boilerplate code needed for converting libraries, relying on inheritance, into BT nodes. Consider this example:
I have 2 options if I want to use a unique method from the derived class as well as store it's base class somewhere, e.g. inside a vector.
Describe the solution you'd like
I would like the ability to allow passing a derived object directly to a port requiring a base class.
As you see, this would reduce boilerplate code in the C++ and in the XML representation. Is there any way to reduce the strictness of the custom
std::any
used in this project to enable this feature ? I think that this project https://github.com/samee/any_of implements this behavior.There is also the problem that BT evaluates ports type for consistency. I don't think one can deduce the base class of a derived class
typeid
...The text was updated successfully, but these errors were encountered: