I have a class which has several methods and I want to call each of those methods in a different thread.
class Base : public QThread
{
copy();
move();
remove();
etc();
....
....
run();
}
Is this possible or should I inherit different classes which implement the functionality in their run() method? ( which would lead to several derived classes )
Thank you.