1234567891011121314151617181920212223242526272829303132333435363738 |
- // *****************************************************************************
- // 版权所有(C)2023~2099 上海骄成超声波技术有限公司
- // 保留所有权利
- // *****************************************************************************
- // 作者 : 杨坚
- // 版本 : 1.0
- // 功能说明:
- // 物料参数
- // *****************************************************************************
- #ifndef __PROGRAMMPAGE_H__
- #define __PROGRAMMPAGE_H__ 1
- #include "ui_ProgrammPage.h"
- #include "WaffleProgramPage.h"
- #include "BondMatrixProgramPage.h"
- #include "WaferProgramPage.h"
- class ProgrammPage : public QWidget
- {
- Q_OBJECT
- public:
- ProgrammPage(QWidget *parent = nullptr);
- ~ProgrammPage();
- private:
- void initPage();
- private:
- Ui::ProgrammPageClass ui;
- BondMatrixProgramPage* m_BondMatrixProgramPage = nullptr;
- WaffleProgramPage* m_pWaffleProgrammPage = nullptr;
- WaferProgramPage* m_WaferProgramPage = nullptr;
- };
- #endif //__PROGRAMMPAGE_H__
|