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???

Qt Code:
  1. int main(int argc, char *argv[])
  2. {
  3. QCoreApplication a(argc, argv);
  4.  
  5. qDebug() << "Hallo";
  6.  
  7. return a.exec();
  8. }
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();