blob: 0ae793ba73a6f38fd0a4705175b930cc71bf9bf0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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);
}
|