Пример #1
0
		void TextFile::AppendAll(CStr fileName, CStr text)
		{
			AppendAll(fileName, text, String::CStrLength(text));
		}
Пример #2
0
		void TextFile::AppendAll(CStr fileName, String text)
		{
			AppendAll(fileName, text, text.Length());
		}
Пример #3
0
 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;
}
Пример #5
0
 SpatialVector<T>& operator+=(T scale)
 {
   AppendAll(scale);
   return (*this);
 }