Salome HOME
nouvelle propriete mesa_launcher_in_package, renommage template PythonComponent en...
[tools/sat.git] / data / templates / PythonComponent / src / StandAlone / StandalonePYCMPGUI.py
diff --git a/data/templates/PythonComponent/src/StandAlone/StandalonePYCMPGUI.py b/data/templates/PythonComponent/src/StandAlone/StandalonePYCMPGUI.py
deleted file mode 100755 (executable)
index 45be4e9..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-import sys
-
-from PyQt5.QtCore    import *
-from PyQt5.QtGui     import *
-from PyQt5.QtWidgets import *
-
-from Controller import Controller
-from Desktop import Desktop
-
-def main( args ) :
-    Appli = QApplication( args )
-    MainFrame = Desktop()
-    myController = Controller( MainFrame )
-    MainFrame.setController( myController )
-    MainFrame.show()
-    Appli.exec_()
-
-if __name__ == "__main__" :
-   main( sys.argv )
-   pass
-