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.cpp | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 lyt/bounding.cpp (limited to 'lyt/bounding.cpp') diff --git a/lyt/bounding.cpp b/lyt/bounding.cpp new file mode 100644 index 0000000..0ae793b --- /dev/null +++ b/lyt/bounding.cpp @@ -0,0 +1,26 @@ +#include "bounding.h" +#include "layout.h" +#include "common.h" + + +LYTBounding::LYTBounding(LYTLayout &layout) : LYTPane(layout) { +} + + +void LYTBounding::dumpToDebug(bool showHeading) { + if (showHeading) + qDebug() << "LYTBounding" << name << "@" << (void*)this; + + LYTPane::dumpToDebug(false); +} + + + +void LYTBounding::writeToDataStream(QDataStream &out) { + LYTPane::writeToDataStream(out); +} + + +void LYTBounding::readFromDataStream(QDataStream &in) { + LYTPane::readFromDataStream(in); +} -- cgit v1.2.3