From b400e932ce310e856a5fcbc49ecce522c9cad1b3 Mon Sep 17 00:00:00 2001 From: Siddarth-Suresh <65844402+Siddarth-Suresh@users.noreply.github.com> Date: Sun, 23 Mar 2025 20:27:31 -0400 Subject: Initial GUI Commit --- src/gui/GUI.h | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 src/gui/GUI.h (limited to 'src/gui/GUI.h') 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 + +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 -- cgit v1.2.3