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

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

#228試行

File size: 506 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
[763]11std::string& StringReplace( std::string& str, const std::string &sb, const std::string &sa );
[472]12
[607]13std::string ToString( int n );
[747]14std::string ToString( const std::wstring &wstr );
[590]15std::wstring ToWString( const std::string &str );
[524]16
[622]17bool IsIdentifierTopChar( char c );
18bool IsIdentifierChar( char c );
[590]19
[298]20}
21}
Note: See TracBrowser for help on using the repository browser.