| 1503 | } |
| 1504 | |
| 1505 | bool DocumentObject::hasChildElement() const |
| 1506 | { |
| 1507 | for (auto ext : getExtensionsDerivedFromType<DocumentObjectExtension>()) { |
| 1508 | if (ext->extensionHasChildElement()) { |
| 1509 | return true; |
| 1510 | } |
| 1511 | } |
| 1512 | return false; |
| 1513 | } |
| 1514 | |
| 1515 | DocumentObject* DocumentObject::resolve(const char* subname, |
| 1516 | App::DocumentObject** parent, |
no test coverage detected