bwidgets/inc/basic_widgets/vertical_layout.hpp

19 lines
357 B
C++

#ifndef VERTICAL_LAYOUT_HPP
#define VERTICAL_LAYOUT_HPP
#include <basic_widgets/abstract/layout.hpp>
namespace bwidgets::widget
{
class Vertical_Layout final : public abstract::Layout
{
private:
void _update_layout() noexcept override;
public:
Widget::Size size() const noexcept override;
};
}
#endif