11 lines
No EOL
147 B
C++
11 lines
No EOL
147 B
C++
#pragma once
|
|
|
|
#include "Layout.hpp"
|
|
|
|
namespace tp {
|
|
class LayoutManager {
|
|
public:
|
|
LayoutManager() = default;
|
|
void adjust(Widget* root);
|
|
};
|
|
} |