Let's say I have 2 classes:
class A {}
class B : public A {}
And i want to use an std::function
the receives anything of type A, but with assign to it methods that receive classes that inherit from A (like B).
void myFun(B bbbb) {}
std::function<void(A)> blah = std::bind(myFun, _1);
This obviously doesn't work, because the compiler won't just downcast implicitly.
But how can I do something like this ? Basically I want to hold a map of some basic std::function type, and in each mapped value it will hold an std::function
to a derived type like B.
Is there a way to bind a cast operator to the placeholder ?