Ignore:
Timestamp:
08/30/15 21:31:39 (9 years ago)
Author:
cheese
Message:

테스트 코드 추가
UI 모양 작업
채팅되는 상태까지 확인

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/msvc14/ChevMsgrClient_MFC/ChevMsgrClient_MFC.h

    r4 r14  
    3131
    3232extern CChevMsgrClient_MFCApp theApp;
     33
     34#include <string>
     35
     36static std::string wstr2str(const std::wstring & wstr)
     37{
     38    return std::string().assign(wstr.begin(), wstr.end());
     39}
     40
     41static std::wstring str2wstr(const std::string & str)
     42{
     43    return std::wstring().assign(str.begin(), str.end());
     44}
Note: See TracChangeset for help on using the changeset viewer.