--------------------------------- File::File File cosntructor, doesn't automatically open
| 112 | // File cosntructor, doesn't automatically open |
| 113 | // |
| 114 | File::File(std::string name, Directory* pParent) |
| 115 | : Entry(name, pParent) |
| 116 | , m_IsOpen(false) |
| 117 | { } |
| 118 | |
| 119 | //--------------------------------- |
| 120 | // File::~File |
nothing calls this directly
no outgoing calls
no test coverage detected