Merge
Demosaicing and pre-processing parameters selectable for each image. Dark frames subtraction and badpixels file support Fast loading in editor.
This commit is contained in:
@@ -19,10 +19,18 @@
|
||||
#ifndef _CURVELISTENER_
|
||||
#define _CURVELISTENER_
|
||||
|
||||
class CurveEditor;
|
||||
|
||||
class CurveListener {
|
||||
|
||||
private:
|
||||
bool multi;
|
||||
public:
|
||||
virtual void curveChanged () {}
|
||||
virtual void curveChanged (CurveEditor* ce) {}
|
||||
void setMulti(bool value) { multi = value; }
|
||||
bool isMulti() { return multi; }
|
||||
CurveListener() : multi(false) {}
|
||||
};
|
||||
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user