I have this class 'CMatrix':
class CMatrix
{
CVector *matrix;
unsigned lin, col;
string m_sNome;
public:
CMatrix( string&, unsigned, unsigned );
~CMatrix();
};
And I want to pass a string to the constructor... but my compiler says "string cannot start a parameter declaration"...
What's wrong?
Thanks in advance
