summaryrefslogtreecommitdiff
path: root/src/editGroupForm.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/editGroupForm.h
parent10b83b465509d864d6946ef30f31ec0356fc78ff (diff)
Standardize source file names
Diffstat (limited to 'src/editGroupForm.h')
-rw-r--r--src/editGroupForm.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/editGroupForm.h b/src/editGroupForm.h
new file mode 100644
index 0000000..e04b46e
--- /dev/null
+++ b/src/editGroupForm.h
@@ -0,0 +1,25 @@
+#ifndef EDITGROUPFORM_H
+#define EDITGROUPFORM_H
+
+#include <QDialog>
+
+#include "group.h"
+#include "ui_groupForm.h"
+
+// form to edit/update a group
+class EditGroupForm : public QDialog {
+ Q_OBJECT
+
+ public:
+ EditGroupForm(const Group &g);
+
+ private:
+ Ui::groupDialog ui;
+
+ Group group;
+
+ private slots:
+ void accept();
+};
+
+#endif