The documentation shows:
______________________________________
QThread::QThread ( QObject * parent = 0 )
Constructs a new thread with the given parent. The thread does not begin executing until start() is called.
See also start().
_____________________________________
As I see it, I could create something like:
QThread* myThread = new QThread(this);
Bookmarks