summaryrefslogtreecommitdiff
path: root/mainwindow.cpp
blob: 93464f0904f2ac2164207d8a603ed51a79d91114 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include "mainwindow.h"
#include "ui_mainwindow.h"

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

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


void MainWindow::on_spinBoxPeakSystemPower_valueChanged(double arg1)
{

}