comparison data/model/SparseModel.h @ 1662:628ffbb05856 single-point

Update PathModel - doesn't use new EventSeries, but doesn't use SparseModel either - it's simpler than that
author Chris Cannam
date Fri, 22 Mar 2019 13:32:09 +0000
parents 2e14a7876945
children
comparison
equal deleted inserted replaced
1661:353a2d15f213 1662:628ffbb05856
36 36
37 /** 37 /**
38 * Model containing sparse data (points with some properties). The 38 * Model containing sparse data (points with some properties). The
39 * properties depend on the point type. 39 * properties depend on the point type.
40 */ 40 */
41
42 template <typename PointType> 41 template <typename PointType>
43 class SparseModel : public Model, 42 class SparseModel : public Model,
44 public TabularModel 43 public TabularModel
45 { 44 {
46 // If we omit the Q_OBJECT macro, lupdate complains. 45 // If we omit the Q_OBJECT macro, lupdate complains.
994 } 993 }
995 994
996 MacroCommand::addCommand(command); 995 MacroCommand::addCommand(command);
997 } 996 }
998 997
999
1000 #endif 998 #endif
1001 999
1002 1000
1003 1001