Пишу так
#include <iostream.h>
//---------------------------------------------------------------------------
istream& operator >>(istream& in, MyMatrix& Matrix)
{
return in;
}
//---------------------------------------------------------------------------
ostream& operator <<(ostream& out,const MyMatrix& Matrix)
{
return out;
}
//---------------------------------------------------------------------------
И в классе:
class MyMatrix
{
...
public:
friend istream& operator >>(istream& in, MyMatrix& Matrix);
friend ostream& operator <<(ostream& out,const MyMatrix& Matrix);
}
Вылдаёт ошибку что нет согласования в функциях из STL и моими.
Что не так?