comparison data/model/IntervalModel.h @ 1450:a12fd0456f0c streaming-csv-writer

Merge from default branch
author Chris Cannam
date Tue, 17 Apr 2018 10:35:42 +0100
parents 48e9f538e6e9
children c01cbe41aeb5
comparison
equal deleted inserted replaced
1449:deabf9fd3d28 1450:a12fd0456f0c
29 class IntervalModel : public SparseValueModel<PointType> 29 class IntervalModel : public SparseValueModel<PointType>
30 { 30 {
31 public: 31 public:
32 IntervalModel(sv_samplerate_t sampleRate, int resolution, 32 IntervalModel(sv_samplerate_t sampleRate, int resolution,
33 bool notifyOnAdd = true) : 33 bool notifyOnAdd = true) :
34 SparseValueModel<PointType>(sampleRate, resolution, notifyOnAdd) 34 SparseValueModel<PointType>(sampleRate, resolution, notifyOnAdd)
35 { } 35 { }
36 36
37 IntervalModel(sv_samplerate_t sampleRate, int resolution, 37 IntervalModel(sv_samplerate_t sampleRate, int resolution,
38 float valueMinimum, float valueMaximum, 38 float valueMinimum, float valueMaximum,
39 bool notifyOnAdd = true) : 39 bool notifyOnAdd = true) :
40 SparseValueModel<PointType>(sampleRate, resolution, 40 SparseValueModel<PointType>(sampleRate, resolution,
41 valueMinimum, valueMaximum, 41 valueMinimum, valueMaximum,
42 notifyOnAdd) 42 notifyOnAdd)
43 { } 43 { }
44 44
45 /** 45 /**