Destructor
| 44 | |
| 45 | // Destructor |
| 46 | ProfileNode::~ProfileNode() { |
| 47 | |
| 48 | delete mChildNode; |
| 49 | delete mSiblingNode; |
| 50 | } |
| 51 | |
| 52 | // Return a pointer to a sub node with a given name |
| 53 | ProfileNode* ProfileNode::findSubNode(const char* name) { |
nothing calls this directly
no outgoing calls
no test coverage detected