训练营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.

14 lines
166 B

  1. #pragma once
  2. #include <QObject>
  3. class Modbus_RTU_Receiver : public QObject
  4. {
  5. Q_OBJECT
  6. public:
  7. Modbus_RTU_Receiver(QObject *parent);
  8. ~Modbus_RTU_Receiver();
  9. };