Newer
Older
AutomaticVerification / softwareDirectory / AutoVerScheme / verifywindow.cpp
#include "verifywindow.h"
#include "ui_verifywindow.h"

VerifyWindow::VerifyWindow(QWidget *parent) :
    QWidget(parent),
    ui(new Ui::VerifyWindow)
{
    ui->setupUi(this);
}

VerifyWindow::~VerifyWindow()
{
    delete ui;
}