Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: src/plugin/ATL_Deprecate.h

Issue 6377735828013056: Issue #1234 - conversion functions between std::wstring and ATL::CString (Closed)
Patch Set: Created Oct. 1, 2014, 7:38 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | src/plugin/ATL_Deprecate.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/plugin/ATL_Deprecate.h
===================================================================
--- a/src/plugin/ATL_Deprecate.h
+++ b/src/plugin/ATL_Deprecate.h
@@ -166,9 +166,11 @@
* The argument cannot be declared 'const' because of the CString API.
* Reference argument usually does not require explicit temporaries.
*/
+std::wstring ToWstring(const ATL::CString& s);
std::wstring to_wstring(const ATL::CString& s);
/**
* Conversion function from std::wstring to ATL::CString
*/
+ATL::CString ToCString(const std::wstring& s);
ATL::CString to_CString(const std::wstring& s);
« no previous file with comments | « no previous file | src/plugin/ATL_Deprecate.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld