Ignore:
Timestamp:
Jun 21, 2007, 3:26:21 AM (17 years ago)
Author:
dai_9181
Message:

Meta::GetClassesメソッドを追加

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/jenga/src/smoothie/Class.cpp

    r173 r180  
    140140
    141141        //継承元クラスを取得
    142         const CClass *pInheritsClass = Smoothie::meta.classes.Find(temporary);
     142        const CClass *pInheritsClass = Smoothie::meta.GetClasses().Find(temporary);
    143143        if( !pInheritsClass ){
    144144            throw SmoothieException(106,temporary,nowLine);
     
    170170    if( !isInheritsClass ){
    171171        // クラスを一つも継承していないとき
    172         const CClass *pObjectClass = Smoothie::meta.classes.Find("Object");
     172        const CClass *pObjectClass = Smoothie::meta.GetClasses().Find("Object");
    173173        if( !pObjectClass ){
    174174            throw SmoothieException(106,"Object",i);
     
    194194
    195195        //継承元クラスを取得
    196         const CClass *pInheritsClass = Smoothie::meta.classes.Find(temporary);
     196        const CClass *pInheritsClass = Smoothie::meta.GetClasses().Find(temporary);
    197197        if( !pInheritsClass ){
    198198            throw SmoothieException(106,temporary,nowLine);
     
    234234        //継承先が読み取られていないとき
    235235        pobj_LoopRefCheck->add(this->GetName().c_str());
    236         Smoothie::meta.classes.GetClass_recur(inheritsClass.GetName().c_str());
     236        Smoothie::meta.GetClasses().GetClass_recur(inheritsClass.GetName().c_str());
    237237        pobj_LoopRefCheck->del(this->GetName().c_str());
    238238    }
     
    296296        //継承先が読み取られていないとき
    297297        pobj_LoopRefCheck->add(this->GetName().c_str());
    298         Smoothie::meta.classes.GetClass_recur(inheritsInterface.GetName().c_str());
     298        Smoothie::meta.GetClasses().GetClass_recur(inheritsInterface.GetName().c_str());
    299299        pobj_LoopRefCheck->del(this->GetName().c_str());
    300300    }
Note: See TracChangeset for help on using the changeset viewer.