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

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

Jenga::Common::ToString関数を追加。

File size: 382 bytes
RevLine 
[298]1#pragma once
2
3namespace Jenga{
4namespace Common{
5
[524]6
[298]7typedef std::vector<std::string> Strings;
8
[465]9bool IsExistString( const Jenga::Common::Strings &strings, const std::string &findStr );
10
[472]11std::string& StringReplace( std::string& str, const std::string sb, const std::string sa );
12
[607]13std::string ToString( int n );
[590]14std::wstring ToWString( const std::string &str );
[524]15
[590]16
[298]17}
18}
Note: See TracBrowser for help on using the repository browser.