Changeset 349 in dev for trunk/abdev/BasicCompiler_Common/src/Class.cpp
- Timestamp:
- Oct 13, 2007, 11:45:58 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abdev/BasicCompiler_Common/src/Class.cpp
r348 r349 1528 1528 1529 1529 if( pobj_c->GetName() == "Object" 1530 || pobj_c->GetFullName() == "ActiveBasic.Core.InterfaceInfo"1531 1530 || dwClassType == ESC_TYPE ) 1532 1531 { … … 1988 1987 return pObjectClass; 1989 1988 } 1989 const CClass *Classes::GetInterfaceInfoClassPtr() const 1990 { 1991 if( !pInterfaceInfo ){ 1992 // キャッシュしておく 1993 pInterfaceInfo = this->Find( "ActiveBasic.Core.InterfaceInfo" ); 1994 1995 if( !pInterfaceInfo ) 1996 { 1997 SmoothieException::Throw(); 1998 } 1999 return pInterfaceInfo; 2000 } 2001 return pInterfaceInfo; 2002 }
Note:
See TracChangeset
for help on using the changeset viewer.