Hi here is my problem.

class VRLessonRecord

{

private:

char Nom[ 64]; Has to be char.

char PathLecon[ 64];

public:

CString GetPath();

CString GetName();

};

CString VRLessonRecord::GetName()

{

return Nom; //error how do I return a char pointer?

}


CString VRLessonRecord::GetPath()

{

return PathLecon;

}