| 471 | return path; |
| 472 | } |
| 473 | std::wstring NativeWString() const |
| 474 | { |
| 475 | std::wstring path; |
| 476 | this->GetNativePath(path); |
| 477 | |
| 478 | return path; |
| 479 | } |
| 480 | std::string GenericString() const { return this->Path.generic_string(); } |
| 481 | std::wstring GenericWString() const { return this->Path.generic_wstring(); } |
| 482 |
nothing calls this directly
no test coverage detected