Add a stub of the program's main function
[bertos.git] / wizard / bertos.py
1 #!/usr/bin/env python
2 # encoding: utf-8
3 #
4 # Copyright 2008 Develer S.r.l. (http://www.develer.com/)
5 # All rights reserved.
6 #
7 # $Id:$
8 #
9 # Author: Lorenzo Berni <duplo@develer.com>
10 #
11
12 import sys
13 from PyQt4.QtCore import *
14 from PyQt4.QtGui import *
15 import BStartPage
16
17 def main():
18     app = QApplication(sys.argv)
19     startPage = BStartPage.BStartPage()
20     wizard = QWizard()
21     wizard.setWindowTitle("Welcome in beRTOS configuration wizard")
22     wizard.addPage(startPage)
23     wizard.show()
24     sys.exit(app.exec_())
25
26
27 if __name__ == '__main__':
28     main()
29