Last change
on this file since 647 was 622, checked in by dai_9181, 16 years ago |
ResourceManagerクラスを追加。既存のリソース管理モジュールの置き換えを行った。
|
File size:
453 bytes
|
Line | |
---|
1 | #pragma once
|
---|
2 |
|
---|
3 | namespace Jenga{
|
---|
4 | namespace Common{
|
---|
5 |
|
---|
6 |
|
---|
7 | typedef std::vector<std::string> Strings;
|
---|
8 |
|
---|
9 | bool IsExistString( const Jenga::Common::Strings &strings, const std::string &findStr );
|
---|
10 |
|
---|
11 | std::string& StringReplace( std::string& str, const std::string sb, const std::string sa );
|
---|
12 |
|
---|
13 | std::string ToString( int n );
|
---|
14 | std::wstring ToWString( const std::string &str );
|
---|
15 |
|
---|
16 | bool IsIdentifierTopChar( char c );
|
---|
17 | bool IsIdentifierChar( char c );
|
---|
18 |
|
---|
19 | }
|
---|
20 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.