#ifndef VTREATMENTSTART_H #define VTREATMENTSTART_H // Qt #include // Project #include "main.h" // forward declarations class tst_views; namespace View { /*! * \brief The VTreatmentBegin class * \details View for starting a new treatment and changing ultrafiltration volume. * */ 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: // coco begin validated: the implementation has not completed yet. PROPERTY(bool, continueEnabled, false) // coco end private slots: void doUserModifiedParameters(); }; } #endif // VTREATMENTSTART_H