system_communication.cpp 390 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // Created by huli on 2020/6/28.
  3. //
  4. #include "system_communication.h"
  5. System_communication::System_communication()
  6. {
  7. }
  8. System_communication::~System_communication()
  9. {
  10. }
  11. //定时封装发送消息, 一般为心跳和状态信息, 需要子类重载
  12. Error_manager System_communication::encapsulate_send_data()
  13. {
  14. return Communication_socket_base::encapsulate_send_data();
  15. }