Closed BeshoyAnwar closed 6 years ago
//stream operators friend istream& operator >> (istream &is, CMatrix& C); friend ostream& operator << (ostream &os, CMatrix& C); // index operator double& operator()(int iR, int iC); // casting operator operator const string(); CMatrix operator++(); //Pre Increment CMatrix operator++(int); //Post Increment CMatrix operator--(); //Pre Decrement CMatrix operator--(int); //Post Decrement CMatrix operator-();//negative operator
//stream operators friend istream& operator >> (istream &is, CMatrix& C); friend ostream& operator << (ostream &os, CMatrix& C); // index operator double& operator()(int iR, int iC); // casting operator operator const string(); CMatrix operator++(); //Pre Increment CMatrix operator++(int); //Post Increment CMatrix operator--(); //Pre Decrement CMatrix operator--(int); //Post Decrement CMatrix operator-();//negative operator