diff options
Diffstat (limited to 'src/ui/controls/container.cpp')
-rw-r--r-- | src/ui/controls/container.cpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/ui/controls/container.cpp b/src/ui/controls/container.cpp new file mode 100644 index 00000000..7ebee4b4 --- /dev/null +++ b/src/ui/controls/container.cpp @@ -0,0 +1,13 @@ +#include "cru/ui/controls/container.hpp" + +#include "cru/platform/graph/graph_factory.hpp" +#include "cru/ui/render/border_render_object.hpp" + +namespace cru::ui::controls { +Container::Container() { + render_object_.reset(new render::BorderRenderObject); + render_object_->SetBorderEnabled(false); +} + +Container::~Container() {} +} // namespace cru::ui::controls |