summaryrefslogtreecommitdiff
path: root/mainwindow.cpp
diff options
context:
space:
mode:
authorJoshua Drake <joshua.ellis.drake@gmail.com>2022-11-17 20:50:46 -0600
committerJoshua Drake <joshua.ellis.drake@gmail.com>2022-11-17 20:50:46 -0600
commitaeef870dbed6488483dc8dadfdf57858a9d84b7c (patch)
tree3974d2eaf2e50c8108d31c48e21d07f301eb6b73 /mainwindow.cpp
Initial Commit
Diffstat (limited to 'mainwindow.cpp')
-rw-r--r--mainwindow.cpp21
1 files changed, 21 insertions, 0 deletions
diff --git a/mainwindow.cpp b/mainwindow.cpp
new file mode 100644
index 0000000..93464f0
--- /dev/null
+++ b/mainwindow.cpp
@@ -0,0 +1,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)
+{
+
+}
+