Salome HOME
chgt Copyrigth
[tools/eficas.git] / Accas / A_MACRO_ETAPE.py
index 590ec521b5de423763993c42973d8491e5ceaca3..74ef0b4bd9b8921c8b9c6d5c54164ba770941cfa 100644 (file)
@@ -1,5 +1,5 @@
 # -*- coding: utf-8 -*-
-# Copyright (C) 2007-2015   EDF R&D
+# 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
 #
 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
 #
+from __future__ import absolute_import
 from Noyau import N_MACRO_ETAPE
 from Validation import V_MACRO_ETAPE
 from Ihm import I_MACRO_ETAPE
-from A_ASSD import CO
+from .A_ASSD import CO
+from Efi2Xsd.MCAccasXML  import X_MCCOMPO
 
 class MACRO_ETAPE(I_MACRO_ETAPE.MACRO_ETAPE,
+                  X_MCCOMPO,
                   V_MACRO_ETAPE.MACRO_ETAPE,
                   N_MACRO_ETAPE.MACRO_ETAPE):
-   typeCO=CO
-   def __init__(self,oper=None,reuse=None,args={}):
-      N_MACRO_ETAPE.MACRO_ETAPE.__init__(self,oper,reuse,args)
-      V_MACRO_ETAPE.MACRO_ETAPE.__init__(self)
-      I_MACRO_ETAPE.MACRO_ETAPE.__init__(self)
+    typeCO=CO
+    def __init__(self,oper=None,reuse=None,args={}):
+        N_MACRO_ETAPE.MACRO_ETAPE.__init__(self,oper,reuse,args)
+        V_MACRO_ETAPE.MACRO_ETAPE.__init__(self)
+        I_MACRO_ETAPE.MACRO_ETAPE.__init__(self)