| 109 | |
| 110 | template<class NODE, class OWNER> |
| 111 | bool GenericNode<NODE, OWNER>::hasAncestor(const NODE* pNode) const |
| 112 | { |
| 113 | return (mpParent == pNode || (mpParent && mpParent->hasAncestor(pNode))); |
| 114 | } |
| 115 | |
| 116 | template<class NODE, class OWNER> |
| 117 | bool GenericNode<NODE, OWNER>::hasDescendant(const NODE* pNode) const |
no outgoing calls
no test coverage detected