Newer
Older
AutomaticVerification / softwareDirectory / AutoVerScheme / checkmethodmanage.h
陈实 on 14 Mar 2024 498 bytes 检定程序管理
#ifndef CHECKMETHODMANAGE_H
#define CHECKMETHODMANAGE_H

#include <QWidget>
#include "basecommonapi.h"

namespace Ui {
class CheckMethodManage;
}

class CheckMethodManage : public QWidget
{
    Q_OBJECT

public:
    explicit CheckMethodManage(QWidget *parent = nullptr);
    ~CheckMethodManage();

private:
    void getCheckMethod();
private slots:
    void showNewMethod();

private:
    Ui::CheckMethodManage *ui;
    QList<VerificationProgramInfo> programList;
};

#endif // CHECKMETHODMANAGE_H