Newer
Older
AutomaticVerification / softwareDirectory / AutoVerScheme / checkdevice.h
陈实 on 14 Mar 2024 599 bytes 检定程序选择设备
#ifndef CHECKDEVICE_H
#define CHECKDEVICE_H

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

namespace Ui {
class CheckDevice;
}

class CheckDevice : public QWidget
{
    Q_OBJECT

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

private slots:
    void on_pushButton_19_clicked();

private:
    void getCheckDevice();
    void getStandardDevice();

public:
    NewCheckMethod *newCheckWnd=nullptr;
private:
    Ui::CheckDevice *ui;
    QList<TestedDevice> testedDeviceList;
    QList<BizDevice> bizDeviceList;
};

#endif // CHECKDEVICE_H