Changeset 3031 in Sophya for trunk/SophyaLib/HiStats


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

Location:
trunk/SophyaLib/HiStats
Files:
2 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}
  • trunk/SophyaLib/HiStats/swppfdtable.h

    r2891 r3031  
    2929  virtual sa_size_t AddRow(const r_8* data);
    3030  virtual sa_size_t AddRow(const MuTyV * data);
     31  virtual sa_size_t AddRow(DataTableRow const& data);
    3132
    3233  //! Equal (copy) operator - Copies the data and the structure if necessary from \b a   
Note: See TracChangeset for help on using the changeset viewer.