#pragma once // Qt #include // Project #include "MAbstract.h" #include "types.h" // forward declarations class tst_models; namespace Model { /*! * \brief The MDDPreGenDialysateStateData class * \details The The ID_DDPreGenDialysateStateData data model * * | MSG | CAN ID | Type | Ack | Src | Dst | Description | * |:----:|:------:|:------:|:---:|:---:|:---:|:-----------: | * |0x4A00| 0x101 | 1 Hz | N | DD | All | ID_DDPreGenDialysateStateData data | * * | Payload || * | || * | #1:(U32) | \ref Data::mpreGenDialysateExecState | * * \sa Data * *

Logging info

* | || * | || * | typeText | eDatum | * | unitText | DD | * | infoText | MDDPreGenDialysateStateData | * */ class MDDPreGenDialysateStateData : public MAbstract { // friends friend class ::tst_models; QVariantList parameters() const override; struct { Types::U32 mPregendialysateexecstate; } _data; public: Type_Enum typeText () const override { return Type_Enum::eDatum ; } Unit_Enum unitText () const override { return Unit_Enum::eDD ; } QString infoText () const override { return QString("PreGenDialysateState"); } struct Data { quint32 mPregendialysateexecstate = 0; }; MDDPreGenDialysateStateData() {} bool fromByteArray (const QByteArray &vByteArray , int *vIndex = nullptr) override; Data data ( ) const ; }; } typedef Model::MDDPreGenDialysateStateData::Data DDPreGenDialysateStateData;