19 lines
441 B
C++
19 lines
441 B
C++
|
|
/*
|
|||
|
|
* BinaryDataWriteEventProcess.cpp
|
|||
|
|
*
|
|||
|
|
* Created on: 7 мая 2023 г.
|
|||
|
|
* Author: titov
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
#include "BinaryDataWriteEventProcess.hh"
|
|||
|
|
|
|||
|
|
driver::BinaryDataWriteEventProcess::BinaryDataWriteEventProcess(
|
|||
|
|
communication::IBinaryDataWriteEvent & event,
|
|||
|
|
communication::IBinaryDataIssuer & issuer ) : event(event), issuer(issuer) {}
|
|||
|
|
|
|||
|
|
void driver::BinaryDataWriteEventProcess::process() {
|
|||
|
|
|
|||
|
|
event.write_event(issuer);
|
|||
|
|
|
|||
|
|
}
|