Salome HOME
PN : Enleve Homard pour la v1.7
[tools/eficas.git] / Accas / A_ASSD.py
index b9661c45bfa67fd0ba3a46e4ae532420989eea16..f3898a2aa1b7a8225903b354d0cb8370763e4ec9 100644 (file)
@@ -1,3 +1,4 @@
+# -*- coding: utf-8 -*-
 #            CONFIGURATION MANAGEMENT OF EDF VERSION
 # ======================================================================
 # COPYRIGHT (C) 1991 - 2002  EDF R&D                  WWW.CODE-ASTER.ORG
@@ -39,9 +40,16 @@ class FONCTION(N_FONCTION.FONCTION,I_FONCTION.FONCTION,ASSD):
       N_FONCTION.FONCTION.__init__(self,etape=etape,sd=sd,reg=reg)
       I_FONCTION.FONCTION.__init__(self,etape=etape,sd=sd,reg=reg)
 
-class fonction(N_FONCTION.fonction,I_FONCTION.fonction,ASSD):
+class formule(N_FONCTION.formule,I_FONCTION.formule,ASSD):
    def __init__(self,etape=None,sd=None,reg='oui'):
-      N_FONCTION.fonction.__init__(self,etape=etape,sd=sd,reg=reg)
+      N_FONCTION.formule.__init__(self,etape=etape,sd=sd,reg=reg)
+      I_FONCTION.formule.__init__(self,etape=etape,sd=sd,reg=reg)
+
+# On conserve fonction (ceinture et bretelles)
+# fonction n'existe plus dans N_FONCTION on le remplace par formule
+class fonction(N_FONCTION.formule,I_FONCTION.fonction,ASSD):
+   def __init__(self,etape=None,sd=None,reg='oui'):
+      N_FONCTION.formule.__init__(self,etape=etape,sd=sd,reg=reg)
       I_FONCTION.fonction.__init__(self,etape=etape,sd=sd,reg=reg)
 
 class GEOM(N_GEOM.GEOM,I_ASSD.ASSD,ASSD):pass