#ifndef VALUEDIALOG_H #define VALUEDIALOG_H #include "valuedialogbase.h" #include class ValueDialog : public ValueDialogBase { Q_OBJECT public: ValueDialog(QWidget* parent) : ValueDialogBase(parent) {} signals: void curveChanged(std::valarray); protected: void calcCurve(); void showEvent(QShowEvent* ev); }; #endif