Ignore:
Timestamp:
Mar 10, 2000, 4:23:01 PM (26 years ago)
Author:
ansari
Message:

Ajout de l'argument bool zero ds NDataBlock<T>::Alloc()
Fonction pour construire un message d'exception avec num de ligne et
nom de fichier ds pexceptions.h .cc

Reza 10/3/2000

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/SophyaLib/BaseTools/pexceptions.cc

    r512 r773  
    2222}
    2323
     24string BuildLongExceptionMessage(const char * s, const char *file, int line)
     25{
     26  char buff[32];
     27  sprintf(buff," Line=%d", line);
     28  string rs=s;
     29  rs += " File="; rs += file; rs += buff;
     30  return(rs);
     31}
     32
    2433#endif
Note: See TracChangeset for help on using the changeset viewer.