|
From: Frank V. C. <fr...@us...> - 2001-02-24 16:26:59
|
Update of /cvsroot/corelinux/clfw/src/testdrivers/exf1
In directory usw-pr-cvs1:/tmp/cvs-serv4932/src/testdrivers/exf1
Modified Files:
examp1.cpp
Log Message:
133863 Added behavior (partial) to Array
Index: examp1.cpp
===================================================================
RCS file: /cvsroot/corelinux/clfw/src/testdrivers/exf1/examp1.cpp,v
retrieving revision 1.26
retrieving revision 1.27
diff -C2 -r1.26 -r1.27
*** examp1.cpp 2001/02/24 04:19:32 1.26
--- examp1.cpp 2001/02/24 16:28:07 1.27
***************
*** 63,66 ****
--- 63,70 ----
#endif
+ #if !defined(__ARRAY_HPP)
+ #include <clfw/Array.hpp>
+ #endif
+
#if !defined(__UNSIGNEDSHORTINTEGER_HPP)
#include <clfw/UnsignedShortInteger.hpp>
***************
*** 317,320 ****
--- 321,325 ----
{
UserTypePtr aType( new UserType );
+ UserTypePtr aType1( new UserType );
UniversalIdentifier aId;
UnsignedShortIntegerPtr aValue( new UnsignedShortInteger(8) );
***************
*** 324,327 ****
--- 329,337 ----
dumpTypeInformation( aType );
+
+ Array myArray;
+ myArray = aType;
+
+ myArray.putFront( aType1 );
//
|