/*! * * Copyright (c) 2022-2025 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 MRxProfilesData.cpp * \author (last) Dara Navaei * \date (last) 27-Feb-2024 * \author (original) Michael Garthwaite * \date (original) 23-Feb-2022 * */ #include "MRxProfilesData.h" using namespace Model; /*! * \brief MRxProfilesData::data * \details Provides model's Data from the received messages data values * \return Data */ MRxProfilesData::Data MRxProfilesData::data() const{ Data data; data.rxProfileContent = _data; return data; }