aboutsummaryrefslogtreecommitdiff
path: root/include/cru/ui/LayoutControl.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/cru/ui/LayoutControl.hpp')
-rw-r--r--include/cru/ui/LayoutControl.hpp19
1 files changed, 0 insertions, 19 deletions
diff --git a/include/cru/ui/LayoutControl.hpp b/include/cru/ui/LayoutControl.hpp
deleted file mode 100644
index 69d5cd0b..00000000
--- a/include/cru/ui/LayoutControl.hpp
+++ /dev/null
@@ -1,19 +0,0 @@
-#pragma once
-#include "Control.hpp"
-
-namespace cru::ui {
-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