Last change
on this file since 829 was 829, checked in by イグトランス (egtra), 13 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 |
|
---|
6 | namespace Jenga{
|
---|
7 | namespace Common{
|
---|
8 |
|
---|
9 |
|
---|
10 | typedef std::vector<std::string> Strings;
|
---|
11 |
|
---|
12 | bool IsExistString( const Jenga::Common::Strings &strings, const std::string &findStr );
|
---|
13 |
|
---|
14 | std::string& StringReplace( std::string& str, const std::string &sb, const std::string &sa );
|
---|
15 |
|
---|
16 | std::string ToString( int n );
|
---|
17 | std::string ToString( const std::wstring &wstr );
|
---|
18 | std::wstring ToWString( const std::string &str );
|
---|
19 |
|
---|
20 | bool IsIdentifierTopChar( char c );
|
---|
21 | bool IsIdentifierChar( char c );
|
---|
22 |
|
---|
23 | }
|
---|
24 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.