- Timestamp:
- Jul 17, 2006, 6:04:59 PM (19 years ago)
- Location:
- trunk/SophyaExt/FitsIOServer
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaExt/FitsIOServer/swfitsdtable.cc
r2889 r3032 378 378 /*! 379 379 The min/max values for each column is updated, in addition 380 to the actions performed by the base class AddRow() 380 to the actions performed by the base class AddRow(). 381 The table is also created on the FITS file at the first call to AddRow() 381 382 */ 382 383 sa_size_t SwFitsDataTable::AddRow(const r_8* data) … … 400 401 /*! 401 402 The min/max values for each column is updated, in addition 402 to the actions performed by the base class AddRow() 403 to the actions performed by the base class AddRow(). 404 The table is also created on the FITS file at the first call to AddRow() 403 405 */ 404 406 sa_size_t SwFitsDataTable::AddRow(const MuTyV * data) … … 419 421 } 420 422 423 //! Adds a row (or line) to the table with input data as DataTableRow object 424 /*! 425 The min/max values for each column is updated, in addition 426 to the actions performed by the base class AddRow(). 427 The table is also created on the FITS file at the first call to AddRow() 428 */ 429 sa_size_t SwFitsDataTable::AddRow(DataTableRow const& data) 430 { 431 if ( data.Size() != NCols() ) 432 throw SzMismatchError(" SwFitsDataTable::AddRow() - data.Size() != NCols() "); 433 return AddRow(data.MTVPtr()); 434 } -
trunk/SophyaExt/FitsIOServer/swfitsdtable.h
r2889 r3032 28 28 virtual sa_size_t AddRow(const r_8* data); 29 29 virtual sa_size_t AddRow(const MuTyV * data); 30 virtual sa_size_t AddRow(DataTableRow const& data); 30 31 31 32 //! Equal (copy) operator - Copies the data and the structure from \b a
Note:
See TracChangeset
for help on using the changeset viewer.