summaryrefslogtreecommitdiff
path: root/src/gui/GUI.h
diff options
context:
space:
mode:
authorSiddarth-Suresh <65844402+Siddarth-Suresh@users.noreply.github.com>2025-03-23 20:27:31 -0400
committerSiddarth-Suresh <65844402+Siddarth-Suresh@users.noreply.github.com>2025-03-23 20:27:31 -0400
commitb400e932ce310e856a5fcbc49ecce522c9cad1b3 (patch)
tree91eea37c01bda87b115b33c63c02dc41c192243f /src/gui/GUI.h
parentfab7d9dcf249762eeac89a11487856e7569c66d5 (diff)
Initial GUI Commit
Diffstat (limited to 'src/gui/GUI.h')
-rw-r--r--src/gui/GUI.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/gui/GUI.h b/src/gui/GUI.h
new file mode 100644
index 0000000..b06f310
--- /dev/null
+++ b/src/gui/GUI.h
@@ -0,0 +1,27 @@
+#ifndef GUI_H
+#define GUI_H
+
+#include <QWidget>
+
+QT_BEGIN_NAMESPACE
+namespace Ui {
+class GUI;
+}
+QT_END_NAMESPACE
+
+class GUI : public QWidget
+{
+ Q_OBJECT
+
+public:
+ GUI(QWidget *parent = nullptr);
+ ~GUI();
+
+private slots:
+ void on_pushButton_clicked();
+
+private:
+ Ui::GUI *ui;
+ void loadTxtFile();
+};
+#endif // GUI_H