--------------------------------- Entry::d-tor Make sure to remove the entry from the parent during destruction
| 51 | // Make sure to remove the entry from the parent during destruction |
| 52 | // |
| 53 | Entry::~Entry() |
| 54 | { |
| 55 | if (m_Parent != nullptr) |
| 56 | { |
| 57 | m_Parent->RemoveChild(this); |
| 58 | } |
| 59 | } |
| 60 | |
| 61 | //--------------------------------- |
| 62 | // Entry::GetPath |
nothing calls this directly
no test coverage detected