| 73 | friend PolyImpl operator*(const PolyImpl& p1, int n2); |
| 74 | friend bool operator==(const PolyImpl& p1, int n2); |
| 75 | Number leadCoef() |
| 76 | { |
| 77 | return Number(p->coef,r.get()); |
| 78 | } |
| 79 | PolyImpl& operator=(const PolyImpl& p2) |
| 80 | { |
| 81 | //durch Reihenfolge Selbstzuweisungen ber�cksichtigt |
no test coverage detected