aboutsummaryrefslogtreecommitdiffstats
path: root/doc/codesnippets/doc/src/snippets/code/src_corelib_kernel_qtimer.cpp
blob: 1b7ea4ee20071a619f58bec601369de3409008c4 (plain)
1
2
3
4
5
6
7
8
9
10
//! [0]
from PySide.QtCore import QApplication, QTimer

def main():

    app = QApplication([])
    QTimer.singleShot(600000, app, SLOT('quit()'))
    ...
    return app.exec()
//! [0]