#ifndef VTREATMENTSTART_H #define VTREATMENTSTART_H // Qt #include // Project #include "main.h" // forward declarations class tst_views; namespace View { class VTreatmentBegin : public QObject { Q_OBJECT // friends friend class ::tst_views; public: explicit VTreatmentBegin(QObject *parent = nullptr); protected: // coco begin validated: This has been validated manually // Def Min Max Res TREATMENT_PARAMETER(float, ufVolume, 0.1, 0, 8.0, 0.1 ) // mL // coco end protected: PROPERTY(bool, continueEnabled, false) private slots: void doUserModifiedParameters(); }; } #endif // VTREATMENTSTART_H