|
From: Frank V. C. <fr...@us...> - 2001-02-24 04:31:24
|
Update of /cvsroot/corelinux/clfw/src/libs/clfw
In directory usw-pr-cvs1:/tmp/cvs-serv7419/src/libs/clfw
Modified Files:
Makefile.am UniversalIdentifier.cpp
Added Files:
Array.cpp Collection.cpp
Log Message:
133863 Collection types added
***** Error reading new file: [Errno 2] No such file or directory: 'Array.cpp'
***** Error reading new file: [Errno 2] No such file or directory: 'Collection.cpp'
Index: Makefile.am
===================================================================
RCS file: /cvsroot/corelinux/clfw/src/libs/clfw/Makefile.am,v
retrieving revision 1.16
retrieving revision 1.17
diff -C2 -r1.16 -r1.17
*** Makefile.am 2000/11/15 01:14:32 1.16
--- Makefile.am 2001/02/24 04:32:31 1.17
***************
*** 29,32 ****
--- 29,34 ----
ShortInteger.cpp \
UnsignedInteger.cpp \
+ Collection.cpp \
+ Array.cpp \
MetaSpace.cpp \
MetaClass.cpp \
Index: UniversalIdentifier.cpp
===================================================================
RCS file: /cvsroot/corelinux/clfw/src/libs/clfw/UniversalIdentifier.cpp,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -r1.3 -r1.4
*** UniversalIdentifier.cpp 2000/10/03 23:56:02 1.3
--- UniversalIdentifier.cpp 2001/02/24 04:32:31 1.4
***************
*** 198,201 ****
--- 198,214 ----
}
+ void UniversalIdentifier::getAsString( CharPtr aPtr ) const
+ {
+ if( aPtr != NULLPTR )
+ {
+
+ uuid_unparse(BytePtr(&theID),aPtr);
+ }
+ else
+ {
+ throw NullPointerException( LOCATION );
+ }
+ }
+
// Fetch theZeroUid
|