blob: cbdb8aa28d78f48d4b3cbc7bcf93b9f827a280a5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#pragma once
#include "Control.hpp"
namespace cru::ui::controls {
class LayoutControl : public Control {
protected:
LayoutControl() = default;
public:
LayoutControl(const LayoutControl& other) = delete;
LayoutControl(LayoutControl&& other) = delete;
LayoutControl& operator=(const LayoutControl& other) = delete;
LayoutControl& operator=(LayoutControl&& other) = delete;
~LayoutControl() override = default;
using Control::AddChild;
using Control::RemoveChild;
};
} // namespace cru::ui
|