Advertisement
Guest User

Untitled

a guest
Jun 25th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. #include "mythread.h"
  2. #include <QtCore>
  3. #include <QDebug>
  4.  
  5. MyThread::MyThread()
  6. {
  7.  
  8. }
  9.  
  10. void MyThread::run()
  11. {
  12.  
  13. qDebug()<<this->name <<"Running";
  14. for(int i=0;i<1000;i++){
  15. qDebug()<<this->name<<i;
  16. };
  17.  
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement