summaryrefslogtreecommitdiff
path: root/src/group.h
blob: 9c7bfa4686607e08f1c213e0d01114620896400c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#ifndef GROUP_H
#define GROUP_H

#include <QString>

struct Group {
	enum Column { left, right };
	int id;
	QString name;
	Column column;
	QString link;
	bool hidden;

	Group(
			int id, 
			QString name, 
			Column column = left,
			QString link = "", 
			bool hidden = false
		 );

	static QList<Group> groups;
};

#endif