|
From: Frank V. C. <fr...@us...> - 2000-10-25 22:31:25
|
Update of /cvsroot/corelinux/clfw/src/libs/LibLoad In directory slayer.i.sourceforge.net:/tmp/cvs-serv18809/src/libs/LibLoad Modified Files: LibraryType.cpp Log Message: 117748 Implement Aggregate for Prototype Index: LibraryType.cpp =================================================================== RCS file: /cvsroot/corelinux/clfw/src/libs/LibLoad/LibraryType.cpp,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** LibraryType.cpp 2000/10/25 12:22:08 1.3 --- LibraryType.cpp 2000/10/25 22:31:23 1.4 *************** *** 35,39 **** const DwordCref version(1); ! //! meta indentifier for the Prototype const UniversalIdentifier metaIdentifier --- 35,39 ---- const DwordCref version(1); ! //! meta indentifier for the LibraryType const UniversalIdentifier metaIdentifier *************** *** 45,49 **** OPEN_METATYPE_PARENTS( LibraryType ) ! DEFINE_METATYPE_PARENT( Prototype ) CLOSE_METATYPE_PARENT; --- 45,49 ---- OPEN_METATYPE_PARENTS( LibraryType ) ! DEFINE_METATYPE_PARENT( Aggregate ) CLOSE_METATYPE_PARENT; *************** *** 60,64 **** CLOSE_INSTANCEDATA; ! //! we use the abstract macro for MetaTypePrototype autonaming DEFINE_METATYPE( LibraryType, metaIdentifier, version ); --- 60,64 ---- CLOSE_INSTANCEDATA; ! //! we use the abstract macro for MetaTypeAggregate autonaming DEFINE_METATYPE( LibraryType, metaIdentifier, version ); *************** *** 70,74 **** LibraryType::LibraryType( void ) : ! Prototype(), theTypeName() { --- 70,74 ---- LibraryType::LibraryType( void ) : ! Aggregate(), theTypeName() { *************** *** 81,85 **** LibraryType::LibraryType( LibraryTypeCref aType ) : ! Prototype(), theTypeName(aType.getTypeName()) { --- 81,85 ---- LibraryType::LibraryType( LibraryTypeCref aType ) : ! Aggregate(), theTypeName(aType.getTypeName()) { |