예제 #1
0
파일: TextFile.cpp 프로젝트: Karkasos/Core
		void TextFile::AppendAll(CStr fileName, CStr text)
		{
			AppendAll(fileName, text, String::CStrLength(text));
		}
예제 #2
0
파일: TextFile.cpp 프로젝트: Karkasos/Core
		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);
 }