Changeset 2693 in Sophya for trunk/SophyaLib/HiStats/datatable.h


Ignore:
Timestamp:
Apr 26, 2005, 2:06:24 PM (20 years ago)
Author:
ansari
Message:

Ajout operateur = pour DataTable pour eviter l utilisation d'un operateur = genere par le compilo ET correction format sprintf - Reza 26/4/2005

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/SophyaLib/HiStats/datatable.h

    r2691 r2693  
    2323  virtual sa_size_t AddColumn(FieldType ft, string const & cnom);
    2424
     25  //! Equal (copy) operator - Copies the data and the structure if necessary from \b a   
     26  inline DataTable&  operator = (BaseDataTable const& a)
     27  { CopyMerge(a, true) ; return *this ; }
     28  //! Equal (copy) operator - Copies the data and the structure if necessary from \b a   
    2529  inline DataTable& operator = (DataTable const& a)
    2630  { CopyMerge(a, true) ; return *this ; }
Note: See TracChangeset for help on using the changeset viewer.