Changeset 344 in dev for trunk/abdev/BasicCompiler_Common/src/Class.cpp
- Timestamp:
- Oct 9, 2007, 11:37:45 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abdev/BasicCompiler_Common/src/Class.cpp
r343 r344 77 77 78 78 Interface::Interface( const CClass *pInterfaceClass ) 79 : pInterfaceClass( pInterfaceClass ) 79 : DynamicMethodsPrototype() 80 , pInterfaceClass( pInterfaceClass ) 80 81 , vtblOffset( -1 ) 81 82 { … … 102 103 } 103 104 104 GetDynamicMethods().push_back( pMethod );105 AddDynamicMethods( pMethod ); 105 106 } 106 107 }
Note:
See TracChangeset
for help on using the changeset viewer.