Newer
Older
AutomaticVerification / softwareDirectory / AutoVerScheme / indexwindow.h
lixanchuan on 29 Feb 2024 412 bytes no commit message
#ifndef INDEXWINDOW_H
#define INDEXWINDOW_H

#include <QMainWindow>

namespace Ui {
class IndexWindow;
}

class IndexWindow : public QMainWindow
{
    Q_OBJECT

public:
    explicit IndexWindow(QWidget *parent = nullptr);
    ~IndexWindow();
private slots:
    void initForm();
    void loadStyle(const QString &qssFile);


private:
    Ui::IndexWindow *ui;
};

#endif // INDEXWINDOW_H