|
From: Frank V. C. <fr...@us...> - 2000-11-15 23:07:24
|
Update of /cvsroot/corelinux/clfw/src/testdrivers/exf1 In directory slayer.i.sourceforge.net:/tmp/cvs-serv22653/src/testdrivers/exf1 Modified Files: examp1.cpp Log Message: 116737 Finishing touches Index: examp1.cpp =================================================================== RCS file: /cvsroot/corelinux/clfw/src/testdrivers/exf1/examp1.cpp,v retrieving revision 1.22 retrieving revision 1.23 diff -C2 -r1.22 -r1.23 *** examp1.cpp 2000/11/15 12:29:31 1.22 --- examp1.cpp 2000/11/15 23:07:21 1.23 *************** *** 103,107 **** void dumpFundementals( void ); ! void dumpMetaTypeInformation( MetaTypeCptr ); void dumpTypeInformation( FrameworkEntityPtr ); --- 103,107 ---- void dumpFundementals( void ); ! void dumpMetaTypeInformation( MetaTypePtr ); void dumpTypeInformation( FrameworkEntityPtr ); *************** *** 147,151 **** template < class T > void dumpParents( T *aMPtr ) { ! Iterator<T const *> *aIterator(aMPtr->createParentIterator()); cout << endl << "Meta Parent List : " << endl; --- 147,151 ---- template < class T > void dumpParents( T *aMPtr ) { ! Iterator<T *> *aIterator(aMPtr->createParentIterator()); cout << endl << "Meta Parent List : " << endl; *************** *** 169,173 **** template < class T > void dumpInstanceMembers( T *aMPtr ) { ! Iterator<MemberDescriptorCptr> *aIterator ( aMPtr->createMemberIterator() --- 169,173 ---- template < class T > void dumpInstanceMembers( T *aMPtr ) { ! Iterator<MemberDescriptorPtr> *aIterator ( aMPtr->createMemberIterator() *************** *** 220,224 **** template < class T > void dumpInstanceFunctions( T *aMPtr ) { ! Iterator<DispatchDescriptorCptr> *aIterator ( aMPtr->createMethodIterator() --- 220,224 ---- template < class T > void dumpInstanceFunctions( T *aMPtr ) { ! Iterator<DispatchDescriptorPtr> *aIterator ( aMPtr->createMethodIterator() *************** *** 340,348 **** << aMetaClass->getType()->getDomainName() << ")" << endl; ! Iterator<MetaClassCptr> *aIterator( aMetaClass->createIterator()); while( aIterator->isValid() == true ) { ! walkOntology( (MetaClassPtr)aIterator->getElement(), indent+1 ); aIterator->setNext(); } --- 340,348 ---- << aMetaClass->getType()->getDomainName() << ")" << endl; ! Iterator<MetaClassPtr> *aIterator( aMetaClass->createIterator()); while( aIterator->isValid() == true ) { ! walkOntology( aIterator->getElement(), indent+1 ); aIterator->setNext(); } *************** *** 386,394 **** // ! dumpMetaTypeInformation( FrameworkEntity::getTypeDescriptor() ); ! dumpMetaTypeInformation( Number::getTypeDescriptor() ); ! dumpMetaTypeInformation( UnsignedNumber::getTypeDescriptor() ); ! dumpMetaTypeInformation( SignedNumber::getTypeDescriptor() ); ! dumpMetaTypeInformation( UserType::getTypeDescriptor() ); // --- 386,394 ---- // ! dumpMetaTypeInformation( (MetaTypePtr)FrameworkEntity::getTypeDescriptor() ); ! dumpMetaTypeInformation( (MetaTypePtr)Number::getTypeDescriptor() ); ! dumpMetaTypeInformation( (MetaTypePtr)UnsignedNumber::getTypeDescriptor() ); ! dumpMetaTypeInformation( (MetaTypePtr)SignedNumber::getTypeDescriptor() ); ! dumpMetaTypeInformation( (MetaTypePtr)UserType::getTypeDescriptor() ); // *************** *** 431,435 **** anotherInteger->getValue() << endl; delete anotherInteger; ! dumpMetaTypeInformation( Integer::getTypeDescriptor() ); // signed Short --- 431,435 ---- anotherInteger->getValue() << endl; delete anotherInteger; ! dumpMetaTypeInformation( (MetaTypePtr)Integer::getTypeDescriptor() ); // signed Short *************** *** 466,470 **** // ! void dumpMetaTypeInformation( MetaTypeCptr aMTPtr ) { // --- 466,470 ---- // ! void dumpMetaTypeInformation( MetaTypePtr aMTPtr ) { // *************** *** 504,508 **** // ! dumpParents<MetaType>( MetaTypePtr(aMTPtr) ); // --- 504,508 ---- // ! dumpParents<MetaType>( MetaTypePtr( aMTPtr ) ); // *************** *** 510,514 **** // ! dumpInstanceMembers<MetaType>( MetaTypePtr(aMTPtr) ); // --- 510,514 ---- // ! dumpInstanceMembers<MetaType>( MetaTypePtr( aMTPtr ) ); // *************** *** 516,520 **** // ! dumpInstanceFunctions<MetaType>( MetaTypePtr(aMTPtr) ); } --- 516,520 ---- // ! dumpInstanceFunctions<MetaType>( MetaTypePtr( aMTPtr ) ); } |