Ignore:
Timestamp:
Jul 17, 2006, 6:04:40 PM (19 years ago)
Author:
ansari
Message:

Declaration SwPPFDataTable::AddRow(DataTableRow) dans la classe fille , Reza 17/7/2006

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/SophyaLib/HiStats/swppfdtable.cc

    r2891 r3031  
    367367/*!
    368368  The min/max values for each column is updated, in addition
    369   to the actions performed by the base class AddLine()
     369  to the actions performed by the base class AddRow()
    370370*/
    371371sa_size_t SwPPFDataTable::AddRow(const MuTyV * data)
     
    382382}
    383383
     384
     385//! Adds a row (or line) to the table with input data as DataTableRow object
     386/*!
     387  The min/max values for each column is updated, in addition
     388  to the actions performed by the base class AddRow()
     389*/
     390sa_size_t SwPPFDataTable::AddRow(DataTableRow const& data)
     391{
     392  if ( data.Size() != NCols() )
     393    throw SzMismatchError(" SwPPFDataTable::AddRow() - data.Size() != NCols() ");
     394  return AddRow(data.MTVPtr());
     395}
Note: See TracChangeset for help on using the changeset viewer.