Changeset 3031 in Sophya for trunk/SophyaLib
- Timestamp:
- Jul 17, 2006, 6:04:40 PM (19 years ago)
- Location:
- trunk/SophyaLib/HiStats
- Files:
-
- 2 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 } -
trunk/SophyaLib/HiStats/swppfdtable.h
r2891 r3031 29 29 virtual sa_size_t AddRow(const r_8* data); 30 30 virtual sa_size_t AddRow(const MuTyV * data); 31 virtual sa_size_t AddRow(DataTableRow const& data); 31 32 32 33 //! Equal (copy) operator - Copies the data and the structure if necessary from \b a
Note:
See TracChangeset
for help on using the changeset viewer.