aboutsummaryrefslogtreecommitdiff
path: root/include/cru/ui/render/stack_layout_render_object.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/cru/ui/render/stack_layout_render_object.hpp')
-rw-r--r--include/cru/ui/render/stack_layout_render_object.hpp17
1 files changed, 0 insertions, 17 deletions
diff --git a/include/cru/ui/render/stack_layout_render_object.hpp b/include/cru/ui/render/stack_layout_render_object.hpp
deleted file mode 100644
index c259b98d..00000000
--- a/include/cru/ui/render/stack_layout_render_object.hpp
+++ /dev/null
@@ -1,17 +0,0 @@
-#pragma once
-#include "layout_render_object.hpp"
-
-namespace cru::ui::render {
-class StackLayoutRenderObject
- : public LayoutRenderObject<StackChildLayoutData> {
- public:
- StackLayoutRenderObject() = default;
- CRU_DELETE_COPY(StackLayoutRenderObject)
- CRU_DELETE_MOVE(StackLayoutRenderObject)
- ~StackLayoutRenderObject() = default;
-
- protected:
- Size OnMeasureContent(const Size& available_size) override;
- void OnLayoutContent(const Rect& content_rect) override;
-};
-} // namespace cru::ui::render