diff options
Diffstat (limited to 'lyt/group.h')
-rw-r--r-- | lyt/group.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/lyt/group.h b/lyt/group.h new file mode 100644 index 0000000..e02b710 --- /dev/null +++ b/lyt/group.h @@ -0,0 +1,22 @@ +#ifndef LYTGROUP_H +#define LYTGROUP_H + +#include "common.h" +#include "pane.h" + +#include <QtCore/QList> + +class LYTGroup { +public: + LYTGroup(); + + + void writeToDataStream(QDataStream &out); + void readFromDataStream(QDataStream &in, LYTPane &linkedPane); + + QString name; + + QList<LYTPane *> panes; +}; + +#endif // LYTGROUP_H |