|
From: Frank V. C. <fr...@us...> - 2001-03-01 16:33:05
|
Update of /cvsroot/corelinux/clfw/clfw
In directory usw-pr-cvs1:/tmp/cvs-serv19117/clfw
Modified Files:
Array.hpp SetCollection.hpp
Log Message:
233863 SetCollection
Index: Array.hpp
===================================================================
RCS file: /cvsroot/corelinux/clfw/clfw/Array.hpp,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -r1.5 -r1.6
*** Array.hpp 2001/03/01 03:20:16 1.5
--- Array.hpp 2001/03/01 16:34:28 1.6
***************
*** 44,48 ****
*/
! class Array : public Collection, Synchronized
{
DECLARE_METATYPEMEMBERS( Array );
--- 44,48 ----
*/
! class Array : public Collection, public Synchronized
{
DECLARE_METATYPEMEMBERS( Array );
***************
*** 185,188 ****
--- 185,192 ----
FrameworkEntityPtr removeAtEnd( void );
+
+ /// Remove all entities in array
+
+ void removeAll( void );
//
Index: SetCollection.hpp
===================================================================
RCS file: /cvsroot/corelinux/clfw/clfw/SetCollection.hpp,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** SetCollection.hpp 2001/03/01 03:20:16 1.2
--- SetCollection.hpp 2001/03/01 16:34:28 1.3
***************
*** 162,167 ****
// Implementation methods
//
! bool compareMembers( SetCollectionCref ) const;
private:
--- 162,176 ----
// Implementation methods
//
+ /// Returns the number of elements NOT found
+
+ Count compareMembers( CollectionCref ) const;
! /// Return members that match (true) or not (false)
!
! ArrayPtr getMembers( CollectionCref, bool ) const;
!
! /// Return a set as an array from input
!
! ArrayPtr foldToArray( ArrayCref ) const;
private:
|