16 lines
328 B
C++
16 lines
328 B
C++
|
|
/*
|
|||
|
|
* HipStatus.cpp
|
|||
|
|
*
|
|||
|
|
* Created on: 20 февр. 2020 г.
|
|||
|
|
* Author: user
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
#include "HipStatus.hh"
|
|||
|
|
|
|||
|
|
communication::hiperface::HipStatusClient::HipStatusClient(
|
|||
|
|
driver::HiperfaceNetworkDriver & hip_driver, unsigned short address ) : hip_driver(hip_driver) {
|
|||
|
|
|
|||
|
|
request.message_control.address = address;
|
|||
|
|
|
|||
|
|
}
|