MotorControlModuleSDFM_TMS3.../Projects/EFC_Communication/UMLibrary/systemic/TransferSettingToIParameterProvider.hh
2024-06-07 11:12:56 +03:00

41 lines
923 B
C++
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*
* TransferSettingToIParameterProvider.hh
*
* Created on: 31 авг. 2021 г.
* Author: sozonov
*/
#include "../systemic/CustomParameters.hpp"
#include "../systemic/IParameterProvider.hh"
#include "../common/ResourceKeeper.hpp"
#ifndef UMLIBRARY_SYSTEMIC_TRANSFERSETTINGTOIPARAMETERPROVIDER_HH_
#define UMLIBRARY_SYSTEMIC_TRANSFERSETTINGTOIPARAMETERPROVIDER_HH_
namespace systemic {
class TransferSettingToIParameterProvider {
public:
typedef unsigned int Id;
void transfer_setting();
TransferSettingToIParameterProvider( ResourceKeeper<systemic::IParameterProvider> &_provider, Id _id, systemic::SharedData _sett_data, Id _link_id );
private:
SharedData string;
Id link_id;
Id id;
systemic::SharedData sett_data;
Locable<systemic::IParameterProvider> provider;
};
} // namespace systemic
#endif /* UMLIBRARY_SYSTEMIC_TRANSFERSETTINGTOIPARAMETERPROVIDER_HH_ */