void  cDico_SymbFN::PutFonc(Fonc_Num  aF,cElCompileFN & aComp)
{
   tIter anIt = mDic.find(aF);
   if (anIt==mDic.end())
   {
       aF.compile(aComp);
       return;
   }

   cCelDico_SFN & aCel = anIt->second;

   if ( aCel.mSymbPut)
      aComp << aCel.NameSymb();
   else 
       aF.compile(aComp);
}