Rev | Line | |
---|
[955] | 1 | //
|
---|
| 2 | // C++ Implementation: STFitEntry
|
---|
| 3 | //
|
---|
[972] | 4 | // Description:
|
---|
[955] | 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 |
|
---|
| 14 | namespace asap {
|
---|
| 15 |
|
---|
| 16 | STFitEntry::STFitEntry()
|
---|
| 17 | {
|
---|
| 18 | }
|
---|
[972] | 19 | STFitEntry::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 | }
|
---|
[955] | 29 |
|
---|
| 30 |
|
---|
| 31 | STFitEntry::~STFitEntry()
|
---|
| 32 | {
|
---|
| 33 | }
|
---|
| 34 |
|
---|
| 35 |
|
---|
| 36 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.