Ignore:
Timestamp:
04/03/06 15:07:08 (18 years ago)
Author:
mar637
Message:

Completed Ticket #7 - storing of fits.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/STFitEntry.cpp

    r955 r972  
    22// C++ Implementation: STFitEntry
    33//
    4 // Description: 
     4// Description:
    55//
    66//
     
    1717{
    1818}
     19STFitEntry::STFitEntry(const STFitEntry& other)
     20{
     21  if ( this != &other ) {
     22    this->functions_ = other.functions_;
     23    this->components_ = other.components_;
     24    this->parameters_ = other.parameters_;
     25    this->parmasks_ = other.parmasks_;
     26    this->frameinfo_ = other.frameinfo_;
     27  }
     28}
    1929
    2030
Note: See TracChangeset for help on using the changeset viewer.