Salome HOME
Update copyrights
[modules/smesh.git] / src / Tools / Verima / Gui / visualiseDatabase.py
index 82bfcfcae24336ff9bc87e8b7d4bcb04fa9d99c3..304022506e63c2ce883ee0202e8865825324dd46 100755 (executable)
@@ -1,24 +1,42 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
+# Copyright (C) 2013-2019  CEA/DEN, EDF R&D
+#
+# This library is free software; you can redistribute it and/or
+# modify it under the terms of the GNU Lesser General Public
+# License as published by the Free Software Foundation; either
+# version 2.1 of the License, or (at your option) any later version.
+#
+# This library is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+# Lesser General Public License for more details.
+#
+# You should have received a copy of the GNU Lesser General Public
+# License along with this library; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
+#
+# See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
+#
 
 import sys,os
 rep=os.path.dirname(os.path.abspath(__file__))
 installDir=os.path.join(rep,'..')
 sys.path.insert(0,installDir)
 
-from PyQt4 import QtGui,QtCore
+from qtsalome import QApplication
 from Gui.maFenetreChoix import MaFenetreChoix
 from Base.dataBase import Base
 
 
 
 if __name__ == "__main__":
-      from optparse import OptionParser
-      p=OptionParser()
-      p.add_option('-d',dest='database',default="myMesh.db",help='nom de la database')
-      options, args = p.parse_args()
+      from argparse import ArgumentParser
+      p=ArgumentParser()
+      p.add_argument('-d',dest='database',default="myMesh.db",help='nom de la database')
+      args = p.parse_args()
 
-      app = QtGui.QApplication(sys.argv)
-      maBase=Base(options.database)
+      app = QApplication(sys.argv)
+      maBase=Base(args.database)
       maBase.initialise()
       window = MaFenetreChoix(maBase)
       window.show()