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