MinaMourice / AsuMathLabG14

2 stars 1 forks source link

Some Useful Operators #25

Closed BeshoyAnwar closed 6 years ago

BeshoyAnwar commented 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