summaryrefslogtreecommitdiff
path: root/src/group.h
blob: 5513f7c8703307aba1bbd1c8dd86ca969f1752b3 (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
#ifndef GROUP_H
#define GROUP_H

#include <QString>
#include <QVBoxLayout>

class Group : public 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