|
From: Frank V. C. <fr...@us...> - 2001-04-10 21:17:54
|
Update of /cvsroot/corelinux/clfw/clfw
In directory usw-pr-cvs1:/tmp/cvs-serv31067/clfw
Modified Files:
FrameworkString.hpp
Log Message:
Added profile and schema location support
Index: FrameworkString.hpp
===================================================================
RCS file: /cvsroot/corelinux/clfw/clfw/FrameworkString.hpp,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** FrameworkString.hpp 2001/03/31 22:21:45 1.1
--- FrameworkString.hpp 2001/04/10 21:17:50 1.2
***************
*** 112,115 ****
--- 112,132 ----
FrameworkStringRef operator=( CharCptr );
+ /**
+ Concat operators for class
+ @param FrameworkString const reference
+ @return FrameworkString reference to (*this)
+ */
+
+ FrameworkStringRef operator+=( FrameworkStringCref );
+
+ /**
+ Concat operator for char pointer
+ @param Char const pointer
+ @return FrameworkString reference to (*this)
+ */
+
+ FrameworkStringRef operator+=( CharCptr );
+
+
//@}
|