aboutsummaryrefslogtreecommitdiff
path: root/src/ui/controls/container.cpp
blob: 7ebee4b44584789d4f7dfb0dbf8bc630ffca691e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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