--------------------------------- Directory::Directory Directory constructor
| 284 | // Directory constructor |
| 285 | // |
| 286 | Directory::Directory(std::string name, Directory* pParent, bool ensureExists) |
| 287 | :Entry(name, pParent) |
| 288 | { |
| 289 | if (ensureExists) |
| 290 | { |
| 291 | Create(); |
| 292 | } |
| 293 | } |
| 294 | |
| 295 | //--------------------------------- |
| 296 | // Directory::~Directory |
nothing calls this directly
no outgoing calls
no test coverage detected