35 lines
458 B
C++
35 lines
458 B
C++
#ifndef MAINWINDOW_H
|
|
#define MAINWINDOW_H
|
|
|
|
#include <QMainWindow>
|
|
#include <QPushButton>
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
namespace Ui
|
|
{
|
|
class MainWindow;
|
|
}
|
|
QT_END_NAMESPACE
|
|
|
|
class MainWindow : public QMainWindow
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
MainWindow(QWidget *parent = nullptr);
|
|
~MainWindow();
|
|
|
|
public slots:
|
|
void doTcpQuery();
|
|
void doRtuQuery();
|
|
|
|
private:
|
|
Ui::MainWindow *ui;
|
|
|
|
QPushButton* pbRtu;
|
|
QPushButton* pbTcp;
|
|
};
|
|
|
|
|
|
#endif // MAINWINDOW_H
|