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