#ifndef VTREATMENTSTART_H #define VTREATMENTSTART_H // Qt #include // Project #include "main.h" namespace View { class VTreatmentBegin : public QObject { Q_OBJECT public: explicit VTreatmentBegin(QObject *parent = nullptr); protected: // Def Min Max Res TREATMENT_PARAMETER(float, ufVolume, 0.1, 0, 8.0, 0.1 ) // mL protected: PROPERTY(bool, continueEnabled, false) private slots: void onUserModifiedParameters(); }; } #endif // VTREATMENTSTART_H