MotorControlModuleSDFM_TMS3.../Projects/EFC_Application/UMLibrary/driver/BinaryDataWriteEventProcess.hh

36 lines
873 B
C++

/*
* BinaryDataWriteEventProcess.hh
*
* Created on: 7 ìàÿ 2023 ã.
* Author: titov
*/
#ifndef UMLIBRARY_DRIVER_BINARYDATAWRITEEVENTPROCESS_HH_
#define UMLIBRARY_DRIVER_BINARYDATAWRITEEVENTPROCESS_HH_
#include "../systemic/IProcess.hh"
#include "../communication/IBinaryDataIssuer.hh"
namespace driver {
//!Ìîäóëü èìèòèðóåò ñîáûòèÿ îòïðàâêè äàííûõ â ïðîöåññå.
class BinaryDataWriteEventProcess : public systemic::IProcess {
public:
BinaryDataWriteEventProcess( communication::IBinaryDataWriteEvent & event,
communication::IBinaryDataIssuer & issuer );
void process() override;
private:
communication::IBinaryDataWriteEvent & event; //!<Ãåíåðàöèÿ ñîáûòèÿ.
communication::IBinaryDataIssuer & issuer; //!<Àáîíåíò.
};
}
#endif /* UMLIBRARY_DRIVER_BINARYDATAWRITEEVENTPROCESS_HH_ */