Salome HOME
This commit was generated by cvs2git to track changes on a CVS vendor
[tools/eficas.git] / AIDE / __init__.py
1 import os
2 import aide_objets
3 import aide_gui
4
5 def go(fichier=None,master=None):
6     if not fichier :
7        fichier=os.path.join(os.path.dirname(__file__),"index_aide.py")
8     index = aide_objets.INDEX(fichier)
9     index.build()
10     o = aide_gui.AIDE_GUI(index,master=master)
11     o.build()
12     return o