adjustmentwindow.cpp 261 Bytes
#include "adjustmentwindow.h"
#include "ui_adjustmentwindow.h"

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

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