| 12 | { |
| 13 | |
| 14 | void LayerItem::addChildItem(LayerItem* _item) |
| 15 | { |
| 16 | mLayerItems.push_back(_item); |
| 17 | if (mLayerNode != nullptr) |
| 18 | { |
| 19 | _item->attachToLayerItemNode(mLayerNode, false); |
| 20 | } |
| 21 | } |
| 22 | |
| 23 | void LayerItem::removeChildItem(LayerItem* _item) |
| 24 | { |
no test coverage detected