diff layer/ColourScaleLayer.h @ 918:4fe7a09be0fe osx-retina

Many fixes for the previous stuff
author Chris Cannam
date Tue, 17 Mar 2015 16:56:03 +0000
parents b66fb15de477
children c98a1fe7c7f5
line wrap: on
line diff
--- a/layer/ColourScaleLayer.h	Tue Mar 17 16:33:51 2015 +0000
+++ b/layer/ColourScaleLayer.h	Tue Mar 17 16:56:03 2015 +0000
@@ -19,11 +19,13 @@
 #include <QString>
 #include <QColor>
 
+class LayerGeometryProvider;
+
 class ColourScaleLayer
 {
 public:
     virtual QString getScaleUnits() const = 0;
-    virtual QColor getColourForValue(View *v, double value) const = 0;
+    virtual QColor getColourForValue(LayerGeometryProvider *v, double value) const = 0;
 };
 
 #endif