| 457 | std::wstring WString() const { return this->Path.wstring(); } |
| 458 | |
| 459 | string_type Native() const |
| 460 | { |
| 461 | string_type path; |
| 462 | this->GetNativePath(path); |
| 463 | |
| 464 | return path; |
| 465 | } |
| 466 | std::string NativeString() const |
| 467 | { |
| 468 | std::string path; |
nothing calls this directly
no test coverage detected