12345678910111213141516171819 |
- #pragma once
- #include "String.Format.tlh"
- //-----------------------------------------------------------------------------
- // ÓÃÓÚ¸ñʽ»¯ CString
- //
- // #include "String.Format.CString.hpp"
- //-----------------------------------------------------------------------------
- namespace ECOM::Utility::String
- {
- template <> inline std::string ToString (const CString & _val)
- {
- return std::string (LPCTSTR (_val));
- }
- }
|