Mercurial > hg > svcore
diff data/model/IntervalModel.h @ 929:59e7fe1b1003 warnfix_no_size_t
Unsigned removals and warning fixes in data/
author | Chris Cannam |
---|---|
date | Tue, 17 Jun 2014 14:33:42 +0100 |
parents | e22b6e89a7f7 |
children | bfe724787abf |
line wrap: on
line diff
--- a/data/model/IntervalModel.h Tue Jun 17 13:52:07 2014 +0100 +++ b/data/model/IntervalModel.h Tue Jun 17 14:33:42 2014 +0100 @@ -29,12 +29,12 @@ class IntervalModel : public SparseValueModel<PointType> { public: - IntervalModel(size_t sampleRate, size_t resolution, + IntervalModel(int sampleRate, int resolution, bool notifyOnAdd = true) : SparseValueModel<PointType>(sampleRate, resolution, notifyOnAdd) { } - IntervalModel(size_t sampleRate, size_t resolution, + IntervalModel(int sampleRate, int resolution, float valueMinimum, float valueMaximum, bool notifyOnAdd = true) : SparseValueModel<PointType>(sampleRate, resolution,