12345678910111213141516171819202122232425262728293031 |
- //
- // Created by huli on 2020/6/28.
- //
- #include "system_communication.h"
- System_communication::System_communication()
- {
- }
- System_communication::~System_communication()
- {
- }
- //定时封装发送消息, 一般为心跳和状态信息, 需要子类重载
- Error_manager System_communication::encapsulate_send_data()
- {
- return Error_code::SUCCESS;
- }
|