blob: 455a99be9bbd6e9a9c1b97c4058b4c4109d3d8c4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#pragma once
#include "LayoutControl.h"
#include "../render/StackLayoutRenderObject.h"
namespace cru::ui::controls {
using render::StackChildLayoutData;
class CRU_UI_API StackLayout
: public LayoutControl<render::StackLayoutRenderObject> {
public:
static constexpr auto kControlName = "StackLayout";
StackLayout();
};
} // namespace cru::ui::controls
|