19 lines
447 B
C++
19 lines
447 B
C++
|
|
/*
|
|||
|
|
* BinaryDataReadEventProcess.cpp
|
|||
|
|
*
|
|||
|
|
* Created on: 7 <EFBFBD><EFBFBD><EFBFBD> 2023 <EFBFBD>.
|
|||
|
|
* Author: titov
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
#include "BinaryDataReadEventProcess.hh"
|
|||
|
|
|
|||
|
|
driver::BinaryDataReadEventProcess::BinaryDataReadEventProcess(
|
|||
|
|
communication::IBinaryDataReadEvent &event,
|
|||
|
|
communication::IBinaryDataSubscriber &subscriber) : event(event), subscriber(subscriber) {}
|
|||
|
|
|
|||
|
|
void driver::BinaryDataReadEventProcess::process() {
|
|||
|
|
|
|||
|
|
event.read_event(subscriber);
|
|||
|
|
|
|||
|
|
}
|