Hello Friends,
I write a little console app with a print output.
I also have a Thread class. My problem is where to define the slots for the Signal of the thread???
int main(int argc, char *argv[])
{
qDebug() << "Hallo";
return a.exec();
}
int main(int argc, char *argv[])
{
QCoreApplication a(argc, argv);
qDebug() << "Hallo";
return a.exec();
}
To copy to clipboard, switch view to plain text mode
Where can I create my thread object and connect my signal to my slot.
For example for the THREAD::finished() Signal and my slot myThrdIsFinished();
Bookmarks