bwidgets/inc/basic_widgets/w/aligned_layout.hpp

14 lines
253 B
C++
Raw Permalink Normal View History

2021-08-06 14:22:56 +02:00
#ifndef BWIDGETS_ALIGNED_LAYOUT_HPP
#define BWIDGETS_ALIGNED_LAYOUT_HPP
#include <basic_widgets/w/base/layout.hpp>
namespace bwidgets
{
2021-08-23 23:50:14 +02:00
// Align vertically or horizontally widgets.
2021-08-17 12:10:41 +02:00
class AlignedLayout : public virtual Layout
2022-01-25 17:13:03 +01:00
{};
2021-08-06 14:22:56 +02:00
}
#endif