source: dev/trunk/ab5.0/jenga/include/common/String.h@ 590

Last change on this file since 590 was 590, checked in by dai_9181, 16 years ago

ToWString関数を追加。

File size: 350 bytes
Line 
1#pragma once
2
3namespace Jenga{
4namespace Common{
5
6
7typedef std::vector<std::string> Strings;
8
9bool IsExistString( const Jenga::Common::Strings &strings, const std::string &findStr );
10
11std::string& StringReplace( std::string& str, const std::string sb, const std::string sa );
12
13std::wstring ToWString( const std::string &str );
14
15
16}
17}
Note: See TracBrowser for help on using the repository browser.