|
From: Frank V. C. <fr...@us...> - 2001-04-08 10:50:46
|
Update of /cvsroot/corelinux/clfw/src/testdrivers/exf2
In directory usw-pr-cvs1:/tmp/cvs-serv10098/src/testdrivers/exf2
Modified Files:
examp2.cpp
Log Message:
Deeper infrastructure for persist
Index: examp2.cpp
===================================================================
RCS file: /cvsroot/corelinux/clfw/src/testdrivers/exf2/examp2.cpp,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** examp2.cpp 2001/04/04 00:43:09 1.1
--- examp2.cpp 2001/04/08 10:50:43 1.2
***************
*** 208,211 ****
--- 208,217 ----
}
+ //
+ // Routine resolves a class and instantiates a instance
+ // of it using the metaclass dispatch on the well know
+ // construct method
+ //
+
FrameworkEntityPtr getInstanceOf( CharCptr aClassTarget )
{
***************
*** 221,225 ****
{
MetaClassPtr aClass = (MetaClassPtr) aIterator->getElement();
- cout << "Testing ["<< aClassTarget <<"] against " << aClass->getInstanceTypeName() << endl;
if( std::strcmp(aClassTarget,aClass->getInstanceTypeName()) == 0 )
{
--- 227,230 ----
|