How can We Use A override member Function in threadpool enqueue ?
Author: z80suiCreated Dec 18, 2018Updated Oct 25, 2024
class A { virture void a() = 0; }; class B:public A { void a(){} override; }; how can I use override function a like this? A a = new B(); enqueue( &a->a, this)
Source: progschj/ThreadPool