comparison layer/ColourScaleLayer.h @ 944:78c152e4db95

Merge from branch tonioni
author Chris Cannam
date Mon, 20 Apr 2015 09:12:17 +0100
parents b66fb15de477
children 4fe7a09be0fe
comparison
equal deleted inserted replaced
896:78e041e45ff0 944:78c152e4db95
21 21
22 class ColourScaleLayer 22 class ColourScaleLayer
23 { 23 {
24 public: 24 public:
25 virtual QString getScaleUnits() const = 0; 25 virtual QString getScaleUnits() const = 0;
26 virtual QColor getColourForValue(View *v, float value) const = 0; 26 virtual QColor getColourForValue(View *v, double value) const = 0;
27 }; 27 };
28 28
29 #endif 29 #endif
30 30