comparison layer/ColourScaleLayer.h @ 905:b66fb15de477 cxx11

Working through the float/double and int/sv_frame_t fixes
author Chris Cannam
date Mon, 09 Mar 2015 14:35:21 +0000
parents 1a1448f7beb2
children 4fe7a09be0fe
comparison
equal deleted inserted replaced
904:e0f08e108064 905:b66fb15de477
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