Changeset 3031 in Sophya for trunk/SophyaLib/HiStats/swppfdtable.cc
- Timestamp:
- Jul 17, 2006, 6:04:40 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaLib/HiStats/swppfdtable.cc
r2891 r3031 367 367 /*! 368 368 The min/max values for each column is updated, in addition 369 to the actions performed by the base class Add Line()369 to the actions performed by the base class AddRow() 370 370 */ 371 371 sa_size_t SwPPFDataTable::AddRow(const MuTyV * data) … … 382 382 } 383 383 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 */ 390 sa_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.