Add a stub of the program's main function
[bertos.git] / wizard / bertos.py
index db3fa49042c5ac94fa7104c354bc9414c0483a17..124a453106e20a01e4de3007a6daeec7f0854f94 100644 (file)
 #
 
 import sys
-import os
-
+from PyQt4.QtCore import *
+from PyQt4.QtGui import *
+import BStartPage
 
 def main():
-    pass
+    app = QApplication(sys.argv)
+    startPage = BStartPage.BStartPage()
+    wizard = QWizard()
+    wizard.setWindowTitle("Welcome in beRTOS configuration wizard")
+    wizard.addPage(startPage)
+    wizard.show()
+    sys.exit(app.exec_())
 
 
 if __name__ == '__main__':