Changeset 345 in dev for trunk/abdev/BasicCompiler64/Compile_Object.cpp
- Timestamp:
- Oct 10, 2007, 1:52:43 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abdev/BasicCompiler64/Compile_Object.cpp
r319 r345 37 37 38 38 std::vector<const UserProc *> subs; 39 pobj_c->Get Methods().Enum( pobj_c->GetName().c_str(), subs );39 pobj_c->GetDynamicMethods().Enum( pobj_c->GetName().c_str(), subs ); 40 40 41 41 const UserProc *pUserProc; … … 57 57 // obj._System_SetType( _System_TypeBase.Search( strNamespace, name ) ) 58 58 subs.clear(); 59 pobj_c->Get Methods().Enum( "_System_SetType", subs );59 pobj_c->GetDynamicMethods().Enum( "_System_SetType", subs ); 60 60 if( subs.size() == 1 ){ 61 61 char temporary[VN_SIZE]; … … 212 212 213 213 // 仮想関数になるメソッドに使用チェックをつける 214 BOOST_FOREACH( const CMethod *pMethod, classObj.Get Methods() )214 BOOST_FOREACH( const CMethod *pMethod, classObj.GetDynamicMethods() ) 215 215 { 216 216 if( pMethod->IsVirtual() ) 217 217 { 218 218 pMethod->GetUserProc().Using(); 219 } 220 } 221 BOOST_FOREACH( const ::Interface &objInterface, classObj.GetInterfaces() ) 222 { 223 BOOST_FOREACH( const CMethod *pMethod, objInterface.GetDynamicMethods() ) 224 { 225 if( pMethod->IsVirtual() ) 226 { 227 pMethod->GetUserProc().Using(); 228 } 219 229 } 220 230 }
Note:
See TracChangeset
for help on using the changeset viewer.