123456789101112131415161718192021222324252627282930 |
- //
- // 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 Communication_socket_base::encapsulate_send_data();
- }
|