system_communication.cpp 360 B

12345678910111213141516171819202122232425262728293031
  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 Error_code::SUCCESS;
  15. }