Changeset 622 in dev for trunk/ab5.0/jenga/src


Ignore:
Timestamp:
May 21, 2008, 1:16:21 PM (16 years ago)
Author:
dai_9181
Message:

ResourceManagerクラスを追加。既存のリソース管理モジュールの置き換えを行った。

Location:
trunk/ab5.0/jenga/src/common
Files:
1 added
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ab5.0/jenga/src/common/String.cpp

    r607 r622  
    5555    return wstr;
    5656}
     57
     58bool Jenga::Common::IsIdentifierTopChar( char c )
     59{
     60    return ( isalpha( c ) || c == '_' );
     61}
     62
     63bool Jenga::Common::IsIdentifierChar( char c )
     64{
     65    return ( IsIdentifierTopChar( c ) || isdigit( c ) );
     66}
Note: See TracChangeset for help on using the changeset viewer.