Salome HOME
dernieres modifs
[tools/eficas.git] / MT / opsOT.py
1 # -*- coding: iso-8859-1 -*-
2
3 def INCLUDE(self,FileName,**args):
4    """ 
5        Fonction sd_prod pour la macro INCLUDE
6    """
7    if hasattr(self,'change_fichier'):
8        delattr(self,'change_fichier')
9        delattr(self,'fichier_ini')
10
11    self.make_include2(fichier=FileName)
12
13 def INCLUDE_context(self,d):
14    """ 
15        Fonction op_init pour macro INCLUDE
16    """
17    for k,v in self.g_context.items():
18       d[k]=v
19
20