14 lines
137 B
C++
14 lines
137 B
C++
|
#include "StarLayout.hpp"
|
||
|
|
||
|
namespace Star {
|
||
|
|
||
|
Layout::Layout() {
|
||
|
markAsContainer();
|
||
|
}
|
||
|
|
||
|
void Layout::update() {
|
||
|
Widget::update();
|
||
|
}
|
||
|
|
||
|
}
|