|
From: Frank V. C. <fr...@us...> - 2001-02-24 04:31:24
|
Update of /cvsroot/corelinux/clfw/clfw
In directory usw-pr-cvs1:/tmp/cvs-serv7419/clfw
Modified Files:
Makefile.am UniversalIdentifier.hpp
Added Files:
Array.hpp Collection.hpp
Log Message:
133863 Collection types added
***** Error reading new file: [Errno 2] No such file or directory: 'Array.hpp'
***** Error reading new file: [Errno 2] No such file or directory: 'Collection.hpp'
Index: Makefile.am
===================================================================
RCS file: /cvsroot/corelinux/clfw/clfw/Makefile.am,v
retrieving revision 1.19
retrieving revision 1.20
diff -C2 -r1.19 -r1.20
*** Makefile.am 2000/11/15 12:29:30 1.19
--- Makefile.am 2001/02/24 04:32:31 1.20
***************
*** 32,35 ****
--- 32,37 ----
UnsignedInteger.hpp \
UnsignedShortInteger.hpp \
+ Collection.hpp \
+ Array.hpp \
MetaSpace.hpp \
MetaClass.hpp \
Index: UniversalIdentifier.hpp
===================================================================
RCS file: /cvsroot/corelinux/clfw/clfw/UniversalIdentifier.hpp,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -r1.4 -r1.5
*** UniversalIdentifier.hpp 2000/11/10 04:42:48 1.4
--- UniversalIdentifier.hpp 2001/02/24 04:32:31 1.5
***************
*** 113,116 ****
--- 113,124 ----
bool isDeleted( void ) const;
+ /**
+ Retrieves the instance as a string
+ @param Char pointer to delivery buffer
+ @exception NullPointerException if pointer invalid
+ */
+
+ void getAsString( CharPtr ) const;
+
/// Fetch theZeroUid
***************
*** 125,132 ****
// Mutators
//
! /// set a new unique Id
! /**
! @arg UniversalIdentifierRef
! */
static void setNewUid( UniversalIdentifierRef );
--- 133,142 ----
// Mutators
//
!
! /**
! set a new unique Id
! @param UniversalIdentifierRef
! */
!
static void setNewUid( UniversalIdentifierRef );
***************
*** 174,178 ****
protected:
! /// the UniqueId
UniqueId theID;
private:
--- 184,189 ----
protected:
! /// the UniqueId
!
UniqueId theID;
private:
|