/*! * * Copyright (c) 2021 Diality Inc. - All Rights Reserved. * \copyright * THIS CODE MAY NOT BE COPIED OR REPRODUCED IN ANY FORM, IN PART OR IN * WHOLE, WITHOUT THE EXPLICIT PERMISSION OF THE COPYRIGHT OWNER. * * \file MHDRequestVersions.h * \author (last) Peter Lucia * \date (last) 04-Jun-2021 * \author (original) Peter Lucia * \date (original) 04-Jun-2021 * */ #pragma once // Qt #include // Project #include "MAbstract.h" #include "types.h" // forward declarations class tst_models; namespace Model { /*! * rief The MHDRequestVersions class * \details Model for the HD's POST version compatibility check * * | MSG | CAN ID | Type | Ack | Src | Dst | Description | * |:----:|:------:|:------:|:---:|:---:|:---:|:----------------------: | * |0X9E00| 0X100 | Event | Y | HD | UI | Model for HD's POST version compatibility check | * * | Payload || * | || * * \sa Data * *

Logging info

* | || * | || * | typeText | Event | * | unitText | HD | * | infoText | HDRequestVersions | * */ class MHDRequestVersions : public MAbstract { // friends friend class ::tst_models; QVariantList parameters() const override; struct { } _data; public: Type_Enum typeText () const override { return Type_Enum::eEvent ;} Unit_Enum unitText () const override { return Unit_Enum::eHD ;} QString infoText () const override { return QString("HDRequestVersions") ;} struct Data { }; MHDRequestVersions() {} bool fromByteArray (const QByteArray &vByteArray , int *vIndex = nullptr) override; Data data ( ) const ; }; } typedef Model::MHDRequestVersions::Data HDRequestVersionsData;