コード例 #1
0
void MyServer::incomingConnection(qintptr socketDescriptor){

  qDebug() << socketDescriptor << " connecting...";
  MyThread *thread = new MyThread(socketDescriptor,this, &storage);
  connect(thread,SIGNAL(finished()), thread, SLOT(deleteLater()));
  thread->run();
}
コード例 #2
0
ファイル: thiscall4.cpp プロジェクト: imguru/DesignPatternCpp
int main() {
  MyThread t;
  t.run();

  getch();
}