|
From: Frank V. C. <fr...@us...> - 2001-04-08 12:59:10
|
Update of /cvsroot/corelinux/clfw/clfw
In directory usw-pr-cvs1:/tmp/cvs-serv23723/clfw
Modified Files:
Catalog.hpp
Log Message:
Fleshing out some details
Index: Catalog.hpp
===================================================================
RCS file: /cvsroot/corelinux/clfw/clfw/Catalog.hpp,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** Catalog.hpp 2001/04/08 10:50:42 1.1
--- Catalog.hpp 2001/04/08 12:59:06 1.2
***************
*** 77,83 ****
//
! /// Retrieve the entities of the catalog
! virtual CollectionPtr getEntities( void ) const = 0;
protected:
--- 77,112 ----
//
! /// Retrieve the count of catalog elements
! virtual Counter getCount( void ) const = 0;
!
! /**
! Interface to retrieve and entry based on attributes
! provided in the collection
! @param corelinux::Collection a collection of
! corelinux::Attribute
! */
!
! virtual FrameworkEntityPtr getEntry( CollectionPtr ) const = 0;
!
! /**
! Interface to create a new entry in the catalog.
! A Collection of attributes specific to the
! domain of the catalog provides the information
! @param corelinux::Collection a collection of
! corelinux::Attribute
! */
!
! virtual void createEntry( CollectionPtr ) = 0;
!
! /**
! Interface to delete an entry in the catalog.
! A Collection of attributes specific to the
! domain of the catalog provides the information
! @param corelinux::Collection a collection of
! corelinux::Attribute
! */
!
! virtual void deleteEntry( CollectionPtr ) = 0;
protected:
|