void Thread::start(){ thread = new QThread(); moveToThread(thread); thread->moveToThread(thread); connect(thread, SIGNAL( started() ), this, SLOT( _threadStarted() ) ); thread->start();}
this->deleteLater(); thread->quit();