summaryrefslogtreecommitdiff
path: root/src/addGroupForm.h
diff options
context:
space:
mode:
authorLouie S <louie@example.com>2024-03-09 17:34:04 -0500
committerLouie S <louie@example.com>2024-03-09 17:34:04 -0500
commitfc00cab0368a6f76a2b1f276f3a3d8573b1fba82 (patch)
tree655bd8a5df5d41f864fff0dac995e48b2fe06856 /src/addGroupForm.h
parent10b83b465509d864d6946ef30f31ec0356fc78ff (diff)
Standardize source file names
Diffstat (limited to 'src/addGroupForm.h')
-rw-r--r--src/addGroupForm.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/addGroupForm.h b/src/addGroupForm.h
new file mode 100644
index 0000000..b181408
--- /dev/null
+++ b/src/addGroupForm.h
@@ -0,0 +1,21 @@
+#ifndef ADDGROUPFORM_H
+#define ADDGROUPFORM_H
+
+#include <QObject>
+
+#include "ui_groupForm.h"
+
+class AddGroupForm : public QDialog {
+ Q_OBJECT
+
+ public:
+ AddGroupForm();
+
+ private:
+ Ui::groupDialog ui;
+
+ private slots:
+ void accept();
+};
+
+#endif