Sorry for my poor explanation:
The structure of the class is:
-> FSyncClass()
//This is within the FSyncClass
-> _nam = new QNetworkAccessManager(this)
-> ... = DownloaderClass(_nam, this); //contains the first code snippet
-> FSyncClass()
//This is within the FSyncClass
-> _nam = new QNetworkAccessManager(this)
-> ... = DownloaderClass(_nam, this); //contains the first code snippet
To copy to clipboard, switch view to plain text mode
The call of the FSyncClass (second code snippet) happens within the main thread.
_thread->start() is not reimplemented, if you mean that.
From the documentation ( start() calls run() calls exec() ) it should start an event queue.
Thank you.
Bookmarks