19 lines
451 B
C++
19 lines
451 B
C++
/*
|
||
* BinaryDataReadEventProcess.cpp
|
||
*
|
||
* Created on: 7 мая 2023 г.
|
||
* 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);
|
||
|
||
}
|