I am using the following code to create a bi-dimensional list :
typedef CList<CString, CString&> MYTYPE;
CList<MYTYPE, MYTYPE&> myList;
But I get this :
Error C2582: 'operator =' function is unavailable in 'class'
What I'm doing wrong ?
Regards,
Cosmin Unguru