| 231 | } |
| 232 | |
| 233 | bool isAChildOf (const SharedObject* possibleParent) const noexcept |
| 234 | { |
| 235 | for (auto* p = parent; p != nullptr; p = p->parent) |
| 236 | if (p == possibleParent) |
| 237 | return true; |
| 238 | |
| 239 | return false; |
| 240 | } |
| 241 | |
| 242 | int indexOf (const ValueTree& child) const noexcept |
| 243 | { |
no outgoing calls
no test coverage detected