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