j
k
j a
j l
AMDG Igor R wrote:
function<void(Base *)> funcB; function <void(Derived *)> funcD; Is it possible to convert somehow funcD --> funcB ?
function<void(Base *)> funcB; function <void(Derived *)> funcD;
Is it possible to convert somehow funcD --> funcB ?
funcB = boost::lambda::bind(funcD, ll_static_cast<Derived*>(_1)); In Christ, Steven Watanabe
Back to the thread
Back to the list