OLD | NEW |
1 /** | 1 /** |
2 * \file ATL_Deprecate.cpp Transient functions used during the ATL removal proce
ss. | 2 * \file ATL_Deprecate.cpp Transient functions used during the ATL removal proce
ss. |
3 */ | 3 */ |
4 | 4 |
5 #include "ATL_Deprecate.h" | 5 #include "ATL_Deprecate.h" |
6 | 6 |
7 std::wstring to_wstring(const ATL::CString& s) | 7 std::wstring ToWstring(const ATL::CString& s) |
8 { | 8 { |
9 std::wstring result(static_cast<const wchar_t *>(s)); | 9 std::wstring result(static_cast<const wchar_t *>(s)); |
10 return result; | 10 return result; |
11 } | 11 } |
12 | 12 |
13 ATL::CString to_CString(const std::wstring& s) | 13 std::wstring to_wstring(const ATL::CString& s) |
| 14 { |
| 15 return ToWstring(s); |
| 16 } |
| 17 |
| 18 ATL::CString ToCString(const std::wstring& s) |
14 { | 19 { |
15 return ATL::CString(s.c_str()); | 20 return ATL::CString(s.c_str()); |
16 } | 21 } |
| 22 |
| 23 ATL::CString to_CString(const std::wstring& s) |
| 24 { |
| 25 return ToCString(s); |
| 26 } |
OLD | NEW |