i think what they mean is that you are to create a class called CString which takes as a parameter a const char* and assigns the name of the class to the passed value:
1 2 3 4 5 6 7 8 9
class CString{
public:
CString(constchar* Name):
myName(Name)
{};
constchar* Name;
};