class Complex { double re, im; public: Complex(double r = 0.0L, double i = 0.0L); double real(void); double imag(void); bool operator==(Complex &b); }; // bool operator==(const Complex &a, const Complex &b);