|
From: Frank V. C. <fr...@us...> - 2001-04-08 10:50:46
|
Update of /cvsroot/corelinux/clfw/clfw/Persist
In directory usw-pr-cvs1:/tmp/cvs-serv10098/clfw/Persist
Modified Files:
Makefile.am Persist.hpp StoreSponsor.hpp
Added Files:
SchemaCatalog.hpp SchemaSponsor.hpp StoreCatalog.hpp
Log Message:
Deeper infrastructure for persist
***** Error reading new file: [Errno 2] No such file or directory: 'SchemaCatalog.hpp'
***** Error reading new file: [Errno 2] No such file or directory: 'SchemaSponsor.hpp'
***** Error reading new file: [Errno 2] No such file or directory: 'StoreCatalog.hpp'
Index: Makefile.am
===================================================================
RCS file: /cvsroot/corelinux/clfw/clfw/Persist/Makefile.am,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** Makefile.am 2001/03/20 01:35:32 1.2
--- Makefile.am 2001/04/08 10:50:43 1.3
***************
*** 14,18 ****
includedir = @includedir@/Persist
include_HEADERS = Persist.hpp \
! StoreSponsor.hpp
# Common rcs information do not modify
--- 14,22 ----
includedir = @includedir@/Persist
include_HEADERS = Persist.hpp \
! StoreSponsor.hpp \
! SchemaSponsor.hpp \
! StoreCatalog.hpp \
! SchemaCatalog.hpp
!
# Common rcs information do not modify
Index: Persist.hpp
===================================================================
RCS file: /cvsroot/corelinux/clfw/clfw/Persist/Persist.hpp,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** Persist.hpp 2001/03/20 01:35:32 1.2
--- Persist.hpp 2001/04/08 10:50:43 1.3
***************
*** 33,36 ****
--- 33,39 ----
#define INCL_StoreSponsor <clfw/Persist/StoreSponsor.hpp>
+ #define INCL_SchemaSponsor <clfw/Persist/SchemaSponsor.hpp>
+ #define INCL_StoreCatalog <clfw/Persist/StoreCatalog.hpp>
+ #define INCL_SchemaCatalog <clfw/Persist/SchemaCatalog.hpp>
/*
Index: StoreSponsor.hpp
===================================================================
RCS file: /cvsroot/corelinux/clfw/clfw/Persist/StoreSponsor.hpp,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** StoreSponsor.hpp 2001/03/20 01:35:32 1.1
--- StoreSponsor.hpp 2001/04/08 10:50:43 1.2
***************
*** 32,35 ****
--- 32,36 ----
namespace corelinux
{
+ DECLARE_CLASS( StoreCatalog );
DECLARE_CLASS( StoreSponsor );
***************
*** 76,79 ****
--- 77,85 ----
//
+ /**
+
+ */
+
+ virtual StoreCatalogPtr getCatalog( void ) const = 0;
protected:
|