class ExtData
{
public:
ExtData() {}
ExtData(const QValueList<BoardData> &_bds, const QString &_text,
MeetingCheckBox::Type _type)
: bds(_bds), text(_text), type(_type) {}
QValueList<BoardData> bds;
QString text;
MeetingCheckBox::Type type;
};