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/bounding.h | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 lyt/bounding.h (limited to 'lyt/bounding.h') diff --git a/lyt/bounding.h b/lyt/bounding.h new file mode 100644 index 0000000..c742ad8 --- /dev/null +++ b/lyt/bounding.h @@ -0,0 +1,22 @@ +#ifndef LYTBOUNDING_H +#define LYTBOUNDING_H + +#include "common.h" +#include "pane.h" + +// the most useful object in LYT +// it's just a regular Pane ... with a different name. + +class LYTBounding : public LYTPane { +public: + LYTBounding(LYTLayout &layout); + + + void writeToDataStream(QDataStream &out); + void readFromDataStream(QDataStream &in); + + void dumpToDebug(bool showHeading=true); +}; + + +#endif // LYTPICTURE_H -- cgit v1.2.3