summaryrefslogtreecommitdiff
path: root/src/group.h
diff options
context:
space:
mode:
authorLouie S <louie@example.com>2024-03-09 17:24:54 -0500
committerLouie S <louie@example.com>2024-03-09 17:24:54 -0500
commit10b83b465509d864d6946ef30f31ec0356fc78ff (patch)
treeff517783ad21ca98a5a1d710b2f62b8fb87fb0f3 /src/group.h
parentafcae23cbf63b31a7ce111ffcd76c027b332bdf9 (diff)
Edit group form skeleton
Diffstat (limited to 'src/group.h')
-rw-r--r--src/group.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/group.h b/src/group.h
index ef23320..fe9158f 100644
--- a/src/group.h
+++ b/src/group.h
@@ -4,16 +4,17 @@
#include <QString>
struct Group {
+ enum Column { left, right };
int id;
QString name;
- QString column;
+ Column column;
QString link;
bool hidden;
Group(
int id,
QString name,
- QString column = "left",
+ Column column = left,
QString link = "",
bool hidden = false
);