Mercurial > hg > svcore
comparison data/model/FFTModel.cpp @ 1065:0fd3661bcfff tonioni
clone() is never used (therefore presumably never works either)
author | Chris Cannam |
---|---|
date | Tue, 31 Mar 2015 12:12:31 +0100 |
parents | 1a73618b0b67 |
children | 420fc961c0c4 |
comparison
equal
deleted
inserted
replaced
1064:c9fdd9921146 | 1065:0fd3661bcfff |
---|---|
435 } | 435 } |
436 | 436 |
437 return peaks; | 437 return peaks; |
438 } | 438 } |
439 | 439 |
440 Model * | |
441 FFTModel::clone() const | |
442 { | |
443 return new FFTModel(*this); | |
444 } | |
445 | |
446 FFTModel::FFTModel(const FFTModel &model) : | 440 FFTModel::FFTModel(const FFTModel &model) : |
447 DenseThreeDimensionalModel(), | 441 DenseThreeDimensionalModel(), |
448 m_server(model.m_server), | 442 m_server(model.m_server), |
449 m_xshift(model.m_xshift), | 443 m_xshift(model.m_xshift), |
450 m_yshift(model.m_yshift) | 444 m_yshift(model.m_yshift) |