17 lines
304 B
C++
17 lines
304 B
C++
#ifndef COALDISTRIBUTMODBUSTHREAD_H
|
|
#define COALDISTRIBUTMODBUSTHREAD_H
|
|
|
|
#include <QObject>
|
|
|
|
class CoalDistributModbusThread {
|
|
public:
|
|
CoalDistributModbusThread(const QString& host, quint16 port);
|
|
|
|
private:
|
|
private:
|
|
QString m_hostIP;
|
|
quint16 m_port;
|
|
};
|
|
|
|
#endif // COALDISTRIBUTMODBUSTHREAD_H
|