|
From: Frank V. C. <fr...@us...> - 2001-04-10 21:17:53
|
Update of /cvsroot/corelinux/clfw/src/testdrivers/exf2
In directory usw-pr-cvs1:/tmp/cvs-serv31067/src/testdrivers/exf2
Modified Files:
examp2.cpp
Log Message:
Added profile and schema location support
Index: examp2.cpp
===================================================================
RCS file: /cvsroot/corelinux/clfw/src/testdrivers/exf2/examp2.cpp,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** examp2.cpp 2001/04/08 10:50:43 1.2
--- examp2.cpp 2001/04/10 21:17:50 1.3
***************
*** 76,79 ****
--- 76,87 ----
#endif
+ #if !defined(__STORECATALOG_HPP)
+ #include INCL_StoreCatalog
+ #endif
+
+ #if !defined(__STORESPONSOR_HPP)
+ #include INCL_StoreSponsor
+ #endif
+
using namespace corelinux;
***************
*** 117,121 ****
// Resolve sponser for Schema gdbm
! // Get the catalog interface
// list existing schemas
// load a schema -or-
--- 125,137 ----
// Resolve sponser for Schema gdbm
! // and get the catalog interface
!
! StoreSponsorPtr aSponsor
! (
! StoreSponsor::castDown(getInstanceOf("SchemaSponsor"))
! );
!
! StoreCatalogPtr aCatalog = aSponsor->getCatalog();
!
// list existing schemas
// load a schema -or-
|