Beispiel #1
0
CMyString::CMyString(const CMyString& str)
{
	m_pData = new char[str.size() + 1];
	strcpy(m_pData, str.m_pData);
}