19 lines
437 B
C++
19 lines
437 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);
|
|
|
|
}
|