Salome HOME
fix archive not found in product
[tools/sat.git] / data / templates / PythonComponent / src / Tools / StandalonePYCMPGUI.py
1 from Controller import Controller
2 from Desktop import Desktop
3 from PyQt4.QtGui import *
4 from PyQt4.QtCore import *
5 import sys
6
7 def main( args ) :
8     Appli = QApplication( args )
9     MainFrame = Desktop()
10     myController = Controller( MainFrame )
11     MainFrame.setController( myController )
12     MainFrame.show()
13     Appli.exec_()
14
15 if __name__ == "__main__" :
16    main( sys.argv )
17    pass
18