Salome HOME
Porting to python3
[tools/yacsgen.git] / module_generator / __init__.py
1 # Copyright (C) 2009-2016  EDF R&D
2 #
3 # This library is free software; you can redistribute it and/or
4 # modify it under the terms of the GNU Lesser General Public
5 # License as published by the Free Software Foundation; either
6 # version 2.1 of the License, or (at your option) any later version.
7 #
8 # This library is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 # Lesser General Public License for more details.
12 #
13 # You should have received a copy of the GNU Lesser General Public
14 # License along with this library; if not, write to the Free Software
15 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 #
17 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 #
19
20 """
21 The python module module_generator defines classes which can be used to define a SALOME module, its components and
22 generates a SALOME source module, its installation and a SALOME application including this module and
23 other preexisting SALOME modules like GEOM, SMESH or others.
24 """
25 from module_generator.gener import Module, Service, Generator
26 from module_generator.fcompo import F77Component
27 from module_generator.cppcompo import CPPComponent
28 from module_generator.pacocompo import PACOComponent
29 from module_generator.pycompo import PYComponent
30 from module_generator.astcompo import ASTERComponent
31 from module_generator.hxxcompo import HXX2SALOMEComponent
32 from module_generator.hxxparacompo import HXX2SALOMEParaComponent
33 from module_generator.yacstypes import add_type
34 from module_generator.salomemodules import add_module
35 from module_generator.gener import Library
36 from module_generator.mpicompo import MPIComponent