source: trunk/src/STFitEntry.cpp @ 972

Last change on this file since 972 was 972, checked in by mar637, 18 years ago

Completed Ticket #7 - storing of fits.

File size: 601 bytes
Line 
1//
2// C++ Implementation: STFitEntry
3//
4// Description:
5//
6//
7// Author: Malte Marquarding <Malte.Marquarding@csiro.au>, (C) 2006
8//
9// Copyright: See COPYING file that comes with this distribution
10//
11//
12#include "STFitEntry.h"
13
14namespace asap {
15
16STFitEntry::STFitEntry()
17{
18}
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}
29
30
31STFitEntry::~STFitEntry()
32{
33}
34
35
36}
Note: See TracBrowser for help on using the repository browser.