comparison data/model/FFTModel.cpp @ 179:0ed2b2e26b44

* Tidy up inheritance hierarchy of model classes -- remove ZoomConstraint as a base class (make it a member instead) and remove virtual inheritances of QObject (no longer necessary).
author Chris Cannam
date Thu, 05 Oct 2006 11:03:06 +0000
parents 21792a550ec9
children f75f8a1cd7b1
comparison
equal deleted inserted replaced
178:0e266fa2510f 179:0ed2b2e26b44
112 { 112 {
113 return new FFTModel(*this); 113 return new FFTModel(*this);
114 } 114 }
115 115
116 FFTModel::FFTModel(const FFTModel &model) : 116 FFTModel::FFTModel(const FFTModel &model) :
117 QObject(),
118 ZoomConstraint(), //!!! want a real ZoomConstraint for this!
119 DenseThreeDimensionalModel(), 117 DenseThreeDimensionalModel(),
120 m_server(model.m_server), 118 m_server(model.m_server),
121 m_xshift(model.m_xshift), 119 m_xshift(model.m_xshift),
122 m_yshift(model.m_yshift) 120 m_yshift(model.m_yshift)
123 { 121 {