Esempio n. 1
0
		void TextFile::AppendAll(CStr fileName, CStr text)
		{
			AppendAll(fileName, text, String::CStrLength(text));
		}
Esempio n. 2
0
		void TextFile::AppendAll(CStr fileName, String text)
		{
			AppendAll(fileName, text, text.Length());
		}
 SpatialVector<T>& operator-=(T scale)
 {
   AppendAll(-1.0 * scale);
   return (*this);
 }
//	Assign - copy/replace list from another c1DList
int	c1DVectorList :: Assign(c1DVectorList *OtherList)
{
	int retval = DeleteAll();
	retval |= AppendAll(OtherList);
	return retval;
}
 SpatialVector<T>& operator+=(T scale)
 {
   AppendAll(scale);
   return (*this);
 }