Modules/WidgetsNew/public/mangers/LayoutManager.hpp
2024-10-14 20:20:21 +03:00

11 lines
No EOL
147 B
C++

#pragma once
#include "Layout.hpp"
namespace tp {
class LayoutManager {
public:
LayoutManager() = default;
void adjust(Widget* root);
};
}