Changeset 133 in dev for BasicCompiler_Common/Class.cpp


Ignore:
Timestamp:
Jun 4, 2007, 8:57:05 AM (17 years ago)
Author:
dai_9181
Message:

Prototypeクラスをちょっとだけ装飾

File:
1 edited

Legend:

Unmodified
Added
Removed
  • BasicCompiler_Common/Class.cpp

    r131 r133  
    157157    , DestructorMemberSubIndex( 0 )
    158158    , classType( Class )
    159     , isUsing( false )
    160159    , pobj_InheritsClass( NULL )
    161160    , ppobj_Member( NULL )
     
    228227}
    229228
    230 bool CClass::IsUsing() const
    231 {
    232     return isUsing;
    233 }
    234 void CClass::Using() const
    235 {
    236     isUsing = true;
    237 }
    238 
    239229bool CClass::IsClass() const
    240230{
     
    786776{
    787777    return isCompilingDestructor;
    788 }
    789 
    790 
    791 //自身と等しいクラスかどうかを確認
    792 bool CClass::IsEquals( const CClass *pClass ) const
    793 {
    794     if( this == pClass ) return true;
    795     return false;
    796778}
    797779
Note: See TracChangeset for help on using the changeset viewer.