Ignore:
Timestamp:
Jun 4, 2007, 7:49:17 AM (17 years ago)
Author:
dai_9181
Message:

Prototypeクラスを用意した。

File:
1 edited

Legend:

Unmodified
Added
Removed
  • BasicCompiler_Common/VariableOpe.cpp

    r128 r131  
    210210        if(lpIndex==0) lstrcpy(name,"non");
    211211        else{
    212             lstrcpy(name,((CClass *)lpIndex)->name);
     212            lstrcpy(name,((CClass *)lpIndex)->GetName().c_str());
    213213        }
    214214    }
     
    751751        //自身のクラスから静的メンバを参照する場合
    752752        char temp2[VN_SIZE];
    753         sprintf(temp2,"%s.%s",pobj_CompilingClass->name,VarName);
     753        sprintf(temp2,"%s.%s",pobj_CompilingClass->GetName().c_str(),VarName);
    754754
    755755        pVar = globalVars.Find( temp2 );
     
    10091009    //クラス名
    10101010    if(pobj_CompilingClass){
    1011         lstrcat(FullName,pobj_CompilingClass->name);
     1011        lstrcat(FullName,pobj_CompilingClass->GetName().c_str());
    10121012        lstrcat(FullName,"%");
    10131013    }
Note: See TracChangeset for help on using the changeset viewer.