--------------------------------- Directory::~Directory Directory destructor, unmounts if its mounted
| 298 | // Directory destructor, unmounts if its mounted |
| 299 | // |
| 300 | Directory::~Directory() |
| 301 | { |
| 302 | if (m_IsMounted) |
| 303 | { |
| 304 | Unmount(); |
| 305 | } |
| 306 | } |
| 307 | |
| 308 | //--------------------------------- |
| 309 | // Directory::RemoveChild |
nothing calls this directly
no outgoing calls
no test coverage detected