训练营Modbus项目代码仓库
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
190 B

  1. #pragma once
  2. #include <QObject>
  3. /**
  4. * 实现消息日志和错误日志的记录导出和存储
  5. */
  6. class Modbus_Msg : public QObject
  7. {
  8. Q_OBJECT
  9. public:
  10. Modbus_Msg(QObject *parent);
  11. ~Modbus_Msg();
  12. };