C++ (Qt)QTimer *timer = 0; if( !timer ){ timer = new QTimer( this ); connect( timer, SIGNAL( timeout() ), this, SLOT( statusOperationSend() ) ); timer->setSingleShot( true ); timer->start( 10000 );}