This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
#pragma once
#include "iWxPvtBase.h"
#include "mToolPvt_global.h"
namespace Ui {
class iWxPvtVasBeg;
}
// 注:该类派生自iWxPvtBase仅仅是为了借用其getParaValue函数
class M_TOOL_PVT_EXPORT iWxPvtVasBeg : public iWxPvtBase
{
Q_OBJECT
public:
explicit iWxPvtVasBeg(QWidget *parent = 0);
~iWxPvtVasBeg();
// 初始化
virtual void initUI();
private slots:
void on_checkBox_clicked();
void on_btnOK_clicked();
void on_btnCancel_clicked();
private:
// 默认值填入
void initDefault();
Ui::iWxPvtVasBeg *ui;
};