31 lines
424 B
C++
31 lines
424 B
C++
#ifndef MYUNITUI_H
|
|
#define MYUNITUI_H
|
|
|
|
#include <QWidget>
|
|
|
|
namespace Ui {
|
|
class MyUnitUI;
|
|
}
|
|
|
|
class MyUnitUI : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit MyUnitUI(QWidget *parent = nullptr);
|
|
~MyUnitUI();
|
|
|
|
private:
|
|
Ui::MyUnitUI *ui;
|
|
|
|
public:
|
|
QString getParams();
|
|
void setParams(QString &strParams);
|
|
|
|
public slots:
|
|
//插件测试
|
|
void s_testPlugin(QString strInfo);
|
|
};
|
|
|
|
#endif // MYUNITUI_H
|