summaryrefslogtreecommitdiff
path: root/src/group.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/group.h')
-rw-r--r--src/group.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/group.h b/src/group.h
new file mode 100644
index 0000000..b6899a9
--- /dev/null
+++ b/src/group.h
@@ -0,0 +1,23 @@
+#ifndef GROUP_H
+#define GROUP_H
+
+#include <QString>
+#include <QVBoxLayout>
+
+class Group : QVBoxLayout {
+ public:
+ int id;
+ QString name;
+ QString column;
+ QString link;
+ bool hidden;
+
+ Group( int id,
+ QString name,
+ QString column = "left",
+ QString link = "",
+ bool hidden = false
+ );
+};
+
+#endif