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

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

egtraブランチの内容をマージ。

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