From 5f6dad55d75cbe146ff7fefc899a02ccd39078ba Mon Sep 17 00:00:00 2001 From: Treeki Date: Thu, 7 Oct 2010 15:56:13 +0200 Subject: initial commit -- everything compiles except for material.cpp. the material system still needs quite a bit of work; this will come in due time --- lyt/group.h | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 lyt/group.h (limited to 'lyt/group.h') 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 + +class LYTGroup { +public: + LYTGroup(); + + + void writeToDataStream(QDataStream &out); + void readFromDataStream(QDataStream &in, LYTPane &linkedPane); + + QString name; + + QList panes; +}; + +#endif // LYTGROUP_H -- cgit v1.2.3