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

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

svn:eol-styleとsvn:mime-type(文字コード指定含む)の設定

  • Property svn:eol-style set to native
  • Property svn:mime-type set to text/plain; charset=Shift_JIS
File size: 522 bytes
Line 
1#include <string>
2#include <vector>
3
4#pragma once
5
6namespace Jenga{
7namespace Common{
8
9
10typedef std::vector<std::string> Strings;
11
12bool IsExistString( const Jenga::Common::Strings &strings, const std::string &findStr );
13
14std::string& StringReplace( std::string& str, const std::string &sb, const std::string &sa );
15
16std::string ToString( int n );
17std::string ToString( const std::wstring &wstr );
18std::wstring ToWString( const std::string &str );
19
20bool IsIdentifierTopChar( char c );
21bool IsIdentifierChar( char c );
22
23}
24}
Note: See TracBrowser for help on using the repository browser.