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