| 1022 | } |
| 1023 | |
| 1024 | std::string FileIo::path() const |
| 1025 | { |
| 1026 | #ifdef EXV_UNICODE_PATH |
| 1027 | if (p_->wpMode_ == Impl::wpUnicode) { |
| 1028 | return ws2s(p_->wpath_); |
| 1029 | } |
| 1030 | #endif |
| 1031 | return p_->path_; |
| 1032 | } |
| 1033 | |
| 1034 | #ifdef EXV_UNICODE_PATH |
| 1035 | std::wstring FileIo::wpath() const |
no test coverage detected