| 199 | # ifdef BOOST_WINDOWS_API |
| 200 | |
| 201 | const std::string path::generic_string(const codecvt_type& cvt) const |
| 202 | { |
| 203 | path tmp(*this); |
| 204 | std::replace(tmp.m_pathname.begin(), tmp.m_pathname.end(), L'\\', L'/'); |
| 205 | return tmp.string(cvt); |
| 206 | } |
| 207 | |
| 208 | const std::wstring path::generic_wstring() const |
| 209 | { |