Salome HOME
Documentation and code minor corrections
[modules/adao.git] / src / daEficas / convert_adao.py
1 # -*- coding: utf-8 -*-
2 #
3 # Copyright (C) 2008-2018 EDF R&D
4 #
5 # This file is part of SALOME ADAO module
6 #
7 # This library is free software; you can redistribute it and/or
8 # modify it under the terms of the GNU Lesser General Public
9 # License as published by the Free Software Foundation; either
10 # version 2.1 of the License.
11 #
12 # This library is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 # Lesser General Public License for more details.
16 #
17 # You should have received a copy of the GNU Lesser General Public
18 # License along with this library; if not, write to the Free Software
19 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
20 #
21 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
22 #
23 # Author: Jean-Philippe Argaud, jean-philippe.argaud@edf.fr, EDF R&D
24
25 # print "import convert_adao"
26
27 import convert.parseur_python
28 from convert.convert_python import *
29
30 def entryPoint():
31     """
32     Retourne les informations nécessaires pour le chargeur de plugins
33     Ces informations sont retournées dans un dictionnaire
34     """
35     return {
36         # Le nom du plugin
37         'name' : 'ADAO',
38         # La factory pour créer une instance du plugin
39         'factory' : PythonParser,
40         }
41
42