aboutsummaryrefslogtreecommitdiff
path: root/include/cru/ui/NoChildControl.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/cru/ui/NoChildControl.hpp')
-rw-r--r--include/cru/ui/NoChildControl.hpp20
1 files changed, 0 insertions, 20 deletions
diff --git a/include/cru/ui/NoChildControl.hpp b/include/cru/ui/NoChildControl.hpp
deleted file mode 100644
index 0d8a8e34..00000000
--- a/include/cru/ui/NoChildControl.hpp
+++ /dev/null
@@ -1,20 +0,0 @@
-#pragma once
-#include "Control.hpp"
-
-namespace cru::ui {
-class NoChildControl : public Control {
- protected:
- NoChildControl() = default;
-
- public:
- NoChildControl(const NoChildControl& other) = delete;
- NoChildControl(NoChildControl&& other) = delete;
- NoChildControl& operator=(const NoChildControl& other) = delete;
- NoChildControl& operator=(NoChildControl&& other) = delete;
- ~NoChildControl() override = default;
-
- private:
- using Control::AddChild;
- using Control::RemoveChild;
-};
-} // namespace cru::ui