summaryrefslogtreecommitdiff
path: root/src/group.h
blob: b6899a95956e9fd56f4f60c878bfd0bb5a4542d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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