|
From: Frank V. C. <fr...@us...> - 2000-10-22 16:36:04
|
Update of /cvsroot/corelinux/clfw/src/libs/clfw In directory slayer.i.sourceforge.net:/tmp/cvs-serv7484/src/libs/clfw Modified Files: FrameworkEntity.cpp MetaType.cpp Number.cpp Added Files: AbstractEntityException.cpp Log Message: 117408 Abstract type support ***** Error reading new file: (2, 'No such file or directory') Index: FrameworkEntity.cpp =================================================================== RCS file: /cvsroot/corelinux/clfw/src/libs/clfw/FrameworkEntity.cpp,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 *** FrameworkEntity.cpp 2000/10/14 11:49:34 1.5 --- FrameworkEntity.cpp 2000/10/22 14:49:16 1.6 *************** *** 43,55 **** //! because MetaTypeRoot is the root, there are no metatype parents OPEN_METATYPE_PARENTS( FrameworkEntity ) CLOSE_METATYPE_PARENT; //! because this is a base entity, there are no members either OPEN_INSTANCEDATA( FrameworkEntity ) CLOSE_INSTANCEDATA; ! //! because we must define MetaTypeRoot we use DEFINE_METATYPE1 ! DEFINE_METATYPE1( FrameworkEntity, MetaTypeRoot, metaIdentifier, version ); // --- 43,58 ---- //! because MetaTypeRoot is the root, there are no metatype parents + OPEN_METATYPE_PARENTS( FrameworkEntity ) CLOSE_METATYPE_PARENT; //! because this is a base entity, there are no members either + OPEN_INSTANCEDATA( FrameworkEntity ) CLOSE_INSTANCEDATA; + + //! because we must define MetaTypeRoot and is abstract ! DEFINE_ABSTRACT_METATYPE1( FrameworkEntity, MetaTypeRoot, metaIdentifier, version ); // Index: MetaType.cpp =================================================================== RCS file: /cvsroot/corelinux/clfw/src/libs/clfw/Met |