|
From: Frank V. C. <fr...@us...> - 2000-10-04 03:11:36
|
Update of /cvsroot/corelinux/clfw/clfw In directory slayer.i.sourceforge.net:/tmp/cvs-serv18979 Modified Files: MetaType.hpp Log Message: 113427 Added defined size and name Index: MetaType.hpp =================================================================== RCS file: /cvsroot/corelinux/clfw/clfw/MetaType.hpp,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -r1.7 -r1.8 *** MetaType.hpp 2000/10/04 02:45:37 1.7 --- MetaType.hpp 2000/10/04 03:11:32 1.8 *************** *** 48,57 **** public: \ /** \ ! get the type descriptor \ \return a const pointer to the MetaType \ */ \ static MetaTypeCptr getTypeDescriptor( void ); \ /** \ ! get the type \ \return a const pointer to the MetaType \ */ \ --- 48,57 ---- public: \ /** \ ! get the type descriptor \ \return a const pointer to the MetaType \ */ \ static MetaTypeCptr getTypeDescriptor( void ); \ /** \ ! get the type \ \return a const pointer to the MetaType \ */ \ *************** *** 70,74 **** redefine the operator new[] \ \arg aSize \ ! \return a VoidPtr \ */ \ VoidPtr operator new(size_t aSize); \ --- 70,74 ---- redefine the operator new[] \ \arg aSize \ ! \return a VoidPtr \ */ \ VoidPtr operator new(size_t aSize); \ *************** *** 86,91 **** #define OPEN_METATYPE_PARENTS( className ) \ ! /** \ ! array storing the parents descriptors \ */ \ MetaType const * className##MetaType##Parents[] = \ --- 86,91 ---- #define OPEN_METATYPE_PARENTS( className ) \ ! /** \ ! array storing the parents descriptors \ */ \ MetaType const * className##MetaType##Parents[] = \ *************** *** 94,98 **** #define DEFINE_METATYPE_PARENT( parentName ) \ /** \ ! parentName type descriptor \ */ \ MetaType##parentName::getTypeDescriptor(), \ --- 94,98 ---- #define DEFINE_METATYPE_PARENT( parentName ) \ /** \ ! parentName type descriptor \ */ \ MetaType##parentName::getTypeDescriptor(), \ *************** *** 100,104 **** #define CLOSE_METATYPE_PARENT \ /** \ ! The parent type descriptor array must be termined by the NULLPTR \ */ \ MetaTypeCptr(NULLPTR) \ --- 100,104 ---- #define CLOSE_METATYPE_PARENT \ /** \ ! The parent type descriptor array must be termined by the NULLPTR \ */ \ MetaTypeCptr(NULLPTR) \ *************** *** 130,134 **** /** \ create a new pointer to className \ ! \return the allocated pointer \ */ \ className##Ptr className::create( void ) \ --- 130,134 ---- /** \ create a new pointer to className \ ! \return the allocated pointer \ */ \ className##Ptr className::create( void ) \ *************** *** 141,145 **** /** \ destroy a pointer to className \ ! \arg the pointer aPtr \ */ \ void className::destroy( className##Ptr aPtr ) \ --- 141,145 ---- /** \ destroy a pointer to className \ ! \arg the pointer aPtr \ */ \ void className::destroy( className##Ptr aPtr ) \ *************** *** 152,157 **** /** \ redefine the operator new for className \ ! this operator use the className::create() \ ! function \ \return a VoidPtr \ */ \ --- 152,157 ---- /** \ redefine the operator new for className \ ! this operator use the className::create() \ ! function \ \return a VoidPtr \ */ \ *************** *** 162,168 **** /** \ redefine the operator delete for className \ ! this operator use the className::destroy() \ function \ ! \arg the pointer aVoidPtr \ */ \ void className::operator delete(VoidPtr aVoidPtr) \ --- 162,168 ---- /** \ redefine the operator delete for className \ ! this operator use the className::destroy() \ function \ ! \arg the pointer aVoidPtr \ */ \ void className::operator delete(VoidPtr aVoidPtr) \ *************** *** 332,337 **** /** ! get the UniversalIdentifier associated to the MetaType. ! @return a UniversalIdentifierCref */ --- 332,337 ---- /** ! get the UniversalIdentifier associated to the MetaType. ! @return a UniversalIdentifierCref */ *************** *** 346,351 **** /** ! get the Parent types. ! @return an array of MetaType */ --- 346,351 ---- /** ! get the Parent types. ! @return an array of MetaType */ *************** *** 353,358 **** /** ! get the name of the instance of this MetaType. ! @return the name of the instance of this MetaType */ --- 353,358 ---- /** ! get the name of the instance of this MetaType. ! @return the name of the instance of this MetaType */ *************** *** 360,365 **** /** ! get the name of this MetaType. ! @return the name of this MetaType */ --- 360,365 ---- /** ! get the name of this MetaType. ! @return the name of this MetaType */ *************** *** 367,372 **** /** ! get the Allocator associated to this MetaType. ! @return the allocator */ --- 367,372 ---- /** ! get the Allocator associated to this MetaType. ! @return the allocator */ *************** *** 374,380 **** /** ! test if this MetaType is of the same type as aMetaType. ! @arg aMetaType the MetaType to test with ! @return true if the same false otherwise */ --- 374,380 ---- /** ! test if this MetaType is of the same type as aMetaType. ! @arg aMetaType the MetaType to test with ! @return true if the same false otherwise */ *************** *** 383,389 **** /** ! test if this MetaType is of the same type as aMetaType. ! @arg aMetaType the MetaType to test with ! @return true if the same false otherwise */ --- 383,389 ---- /** ! test if this MetaType is of the same type as aMetaType. ! @arg aMetaType the MetaType to test with ! @return true if the same false otherwise */ *************** *** 395,400 **** /** ! tells if the MetaType is an abstract one or not ! @return true if it is an abstract metatype false otherwise */ --- 395,400 ---- /** ! tells if the MetaType is an abstract one or not ! @return true if it is an abstract metatype false otherwise */ |