blob: 3df2b44574cd543c3090992dcedeb6924dfad6e0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#pragma once
#include "SingleChildControl.h"
#include "../render/BorderRenderObject.h"
namespace cru::ui::controls {
class CRU_UI_API Container
: public SingleChildControl<render::BorderRenderObject> {
static constexpr StringView kControlType = u"Container";
public:
Container();
CRU_DELETE_COPY(Container)
CRU_DELETE_MOVE(Container)
~Container() override;
public:
String GetControlType() const final { return kControlType.ToString(); }
};
} // namespace cru::ui::controls
|