--------------------------------- FilePackage::~FilePackage Destructor closes the file and deletes the object
| 49 | // Destructor closes the file and deletes the object |
| 50 | // |
| 51 | FilePackage::~FilePackage() |
| 52 | { |
| 53 | SafeDelete(m_File); |
| 54 | } |
| 55 | |
| 56 | |
| 57 | // Utility |
nothing calls this directly
no test coverage detected