summaryrefslogtreecommitdiff
path: root/mainwindow.h
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.h
Initial Commit
Diffstat (limited to 'mainwindow.h')
-rw-r--r--mainwindow.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/mainwindow.h b/mainwindow.h
new file mode 100644
index 0000000..9fb7515
--- /dev/null
+++ b/mainwindow.h
@@ -0,0 +1,24 @@
+#ifndef MAINWINDOW_H
+#define MAINWINDOW_H
+
+#include <QMainWindow>
+
+QT_BEGIN_NAMESPACE
+namespace Ui { class MainWindow; }
+QT_END_NAMESPACE
+
+class MainWindow : public QMainWindow
+{
+ Q_OBJECT
+
+public:
+ MainWindow(QWidget *parent = nullptr);
+ ~MainWindow();
+
+private slots:
+ void on_spinBoxPeakSystemPower_valueChanged(double arg1);
+
+private:
+ Ui::MainWindow *ui;
+};
+#endif // MAINWINDOW_H