comparison layer/ColourScaleLayer.h @ 946:36cddc3de023 alignment_view

Merge from default branch
author Chris Cannam
date Mon, 20 Apr 2015 09:19:52 +0100
parents b66fb15de477
children 4fe7a09be0fe
comparison
equal deleted inserted replaced
897:499b637f2a26 946:36cddc3de023
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