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

Last change on this file since 763 was 763, checked in by イグトランス (egtra), 15 years ago

#228試行

File size: 506 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::string ToString( int n );
14std::string ToString( const std::wstring &wstr );
15std::wstring ToWString( const std::string &str );
16
17bool IsIdentifierTopChar( char c );
18bool IsIdentifierChar( char c );
19
20}
21}
Note: See TracBrowser for help on using the repository browser.