Salome HOME
Python API for HYDROData_Image.
[modules/hydro.git] / src / HYDROPy / HYDROData.py.in
1 # Copyright (C) 2007-2013  CEA/DEN, EDF R&D, OPEN CASCADE
2 #
3 # Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 # CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 #
6 # This library is free software; you can redistribute it and/or
7 # modify it under the terms of the GNU Lesser General Public
8 # License as published by the Free Software Foundation; either
9 # version 2.1 of the License.
10 #
11 # This library is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 # Lesser General Public License for more details.
15 #
16 # You should have received a copy of the GNU Lesser General Public
17 # License along with this library; if not, write to the Free Software
18 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19
20 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 #
22
23 from PyQt4 import pyqtconfig
24
25 # These are installation specific values created when HYDROData was configured.
26 # The following line will be replaced when this template is used to create
27 # the final configuration module.
28 # @SIP_CONFIGURATION@
29
30 class Configuration(pyqtconfig.Configuration):
31     """The class that represents HYDROData configuration values.
32     """
33     def __init__(self, sub_cfg=None):
34         """Initialise an instance of the class.
35
36         sub_cfg is the list of sub-class configurations.  It should be None
37         when called normally.
38         """
39         # This is all standard code to be copied verbatim except for the
40         # name of the module containing the super-class.
41         if sub_cfg:
42             cfg = sub_cfg
43         else:
44             cfg = []
45
46         cfg.append(_pkg_config)
47
48         pyqtconfig.Configuration.__init__(self, cfg)
49
50 class HYDRODataModuleMakefile(pyqtconfig.QtGuiModuleMakefile):
51     """The Makefile class for modules that %Import HYDROData.
52     """
53     def finalise(self):
54         """Finalise the macros.
55         """
56         # Make sure our C++ library is linked.
57         self.extra_libs.append("HYDROData")
58
59         # Let the super-class do what it needs to.
60         pyqtconfig.QtGuiModuleMakefile.finalise(self)