Changeset 342 in dev for trunk/abdev/BasicCompiler32/Compile_Object.cpp
- Timestamp:
- Oct 9, 2007, 1:10:33 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abdev/BasicCompiler32/Compile_Object.cpp
r334 r342 39 39 40 40 std::vector<const UserProc *> subs; 41 pobj_c->Get Methods().Enum( pobj_c->GetName().c_str(), subs );41 pobj_c->GetDynamicMethods().Enum( pobj_c->GetName().c_str(), subs ); 42 42 43 43 const UserProc *pUserProc; … … 59 59 // obj._System_SetType( _System_TypeBase.Search( strNamespace, name ) ) 60 60 subs.clear(); 61 pobj_c->Get Methods().Enum( "_System_SetType", subs );61 pobj_c->GetDynamicMethods().Enum( "_System_SetType", subs ); 62 62 if( subs.size() == 1 ){ 63 63 char temporary[VN_SIZE]; … … 217 217 218 218 // 仮想関数になるメソッドに使用チェックをつける 219 BOOST_FOREACH( const CMethod *pMethod, classObj.Get Methods() )219 BOOST_FOREACH( const CMethod *pMethod, classObj.GetDynamicMethods() ) 220 220 { 221 221 if( pMethod->IsVirtual() ) … … 224 224 } 225 225 } 226 BOOST_FOREACH( const ::Interface &objInterface, classObj.GetInterfaces() ) 227 { 228 BOOST_FOREACH( const CMethod *pMethod, objInterface.GetClass().GetDynamicMethods() ) 229 { 230 if( pMethod->IsVirtual() ) 231 { 232 pMethod->GetUserProc().Using(); 233 } 234 } 235 } 226 236 } 227 237
Note:
See TracChangeset
for help on using the changeset viewer.