std::wstring s2ws (const std::string& s)
{
std::wstring ws;
ws.assign (s.begin (), s.end ());
return ws;
}
std::string ws2s (const std::wstring& ws)
{
std::string s;
s.assign (ws.begin (), ws.end ());
return s;
'[ Programing ] > STL & Booster' 카테고리의 다른 글
STL 강제 크래쉬. (0) | 2017.10.10 |
---|---|
mt19937 Random (0) | 2016.06.15 |
stringstream.... INI 파일 읽어 구분 문자 별로 값 넣기. (0) | 2013.06.26 |
set에 중복& 정렬 설정 custom operator 로 변경하기 (0) | 2013.05.22 |
날짜 기간 계산 의사 랜덤 코드 uniform_int_distribution (0) | 2013.05.22 |