| 328 | } |
| 329 | |
| 330 | void OSFile::osName(const std::string& name) { |
| 331 | info->stdName = name; |
| 332 | info->osName = name; |
| 333 | OSFileOSToStdDir(info->stdName); |
| 334 | } |
| 335 | |
| 336 | std::string OSFile::getFileName() { |
| 337 | std::string::size_type lastslash = info->stdName.rfind('/'); |
no test coverage detected