Changeset 180 in dev for trunk/jenga/src/smoothie/Class.cpp
- Timestamp:
- Jun 21, 2007, 3:26:21 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/jenga/src/smoothie/Class.cpp
r173 r180 140 140 141 141 //継承元クラスを取得 142 const CClass *pInheritsClass = Smoothie::meta. classes.Find(temporary);142 const CClass *pInheritsClass = Smoothie::meta.GetClasses().Find(temporary); 143 143 if( !pInheritsClass ){ 144 144 throw SmoothieException(106,temporary,nowLine); … … 170 170 if( !isInheritsClass ){ 171 171 // クラスを一つも継承していないとき 172 const CClass *pObjectClass = Smoothie::meta. classes.Find("Object");172 const CClass *pObjectClass = Smoothie::meta.GetClasses().Find("Object"); 173 173 if( !pObjectClass ){ 174 174 throw SmoothieException(106,"Object",i); … … 194 194 195 195 //継承元クラスを取得 196 const CClass *pInheritsClass = Smoothie::meta. classes.Find(temporary);196 const CClass *pInheritsClass = Smoothie::meta.GetClasses().Find(temporary); 197 197 if( !pInheritsClass ){ 198 198 throw SmoothieException(106,temporary,nowLine); … … 234 234 //継承先が読み取られていないとき 235 235 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()); 237 237 pobj_LoopRefCheck->del(this->GetName().c_str()); 238 238 } … … 296 296 //継承先が読み取られていないとき 297 297 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()); 299 299 pobj_LoopRefCheck->del(this->GetName().c_str()); 300 300 }
Note:
See TracChangeset
for help on using the changeset viewer.