comparison layer/ColourScaleLayer.h @ 922:26da827e8fb5 tonioni

Merge from cxx11 branch
author Chris Cannam
date Mon, 23 Mar 2015 11:26:28 +0000
parents b66fb15de477
children 4fe7a09be0fe
comparison
equal deleted inserted replaced
921:4968bbaf1ed8 922:26da827e8fb5
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