X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=Accas%2FA_MCLIST.py;h=f80f1368bee584ec065903b2bbb4bfbf82d7888b;hb=e4f9ed44499c18435beb762c4deb1df9f1c8343a;hp=e3fba40a4369a58f01cb85e5456583d8c5a870da;hpb=fcd054a825fbe171652108194c0204f8e3fd955a;p=tools%2Feficas.git diff --git a/Accas/A_MCLIST.py b/Accas/A_MCLIST.py index e3fba40a..f80f1368 100644 --- a/Accas/A_MCLIST.py +++ b/Accas/A_MCLIST.py @@ -1,7 +1,29 @@ +# -*- coding: utf-8 -*- +# Copyright (C) 2007-2021 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. +# +# 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 +# ====================================================================== +from __future__ import absolute_import from Noyau import N_MCLIST from Validation import V_MCLIST from Ihm import I_MCLIST +from Efi2Xsd.MCAccasXML import X_MCLIST -class MCList(I_MCLIST.MCList,N_MCLIST.MCList,V_MCLIST.MCList): - def __init__(self): - N_MCLIST.MCList.__init__(self) + +class MCList(I_MCLIST.MCList,N_MCLIST.MCList,X_MCLIST,V_MCLIST.MCList): + def __init__(self): + N_MCLIST.MCList.__init__(self)