Ignore:
Timestamp:
Jun 6, 2007, 12:58:40 AM (17 years ago)
Author:
dai_9181
Message:

Method/Memberのリファクタリング

File:
1 edited

Legend:

Unmodified
Added
Removed
  • BasicCompiler64/Compile_Object.cpp

    r131 r135  
    3434
    3535    std::vector<UserProc *> subs;
    36     pobj_c->EnumMethod( pobj_c->GetName().c_str(), subs );
     36    pobj_c->GetMethods().Enum( pobj_c->GetName().c_str(), subs );
    3737
    3838    UserProc *pUserProc;
     
    5454        // obj._System_SetType( _System_TypeBase.Search( strNamespace, name ) )
    5555        subs.clear();
    56         pobj_c->EnumMethod( "_System_SetType", subs );
     56        pobj_c->GetMethods().Enum( "_System_SetType", subs );
    5757        if( subs.size() == 1 ){
    5858            char temporary[VN_SIZE];
     
    179179
    180180
    181     CMethod *method = classObj.GetDestructorMethod();
     181    const CMethod *method = classObj.GetDestructorMethod();
    182182    if( method == NULL ) return;
    183183
Note: See TracChangeset for help on using the changeset viewer.