///////////////////// Contianer /////////////////////
| 87 | // Contianer |
| 88 | ////////////////////////// |
| 89 | Container::Container(rect_t bounds) : Widget(bounds) { |
| 90 | |
| 91 | } |
| 92 | |
| 93 | void Container::AddWidget(Widget* w){ |
| 94 | children.push_back(w); |
nothing calls this directly
no outgoing calls
no test coverage detected